I dont understand why sb cannot just work?! I had a hell of a time to get next/font loading my local fonts correctly! Now msw is failing to load!
This is the error:
TypeError: Failed to update a ServiceWorker for scope ('http://localhost:6006/') with script ('http://localhost:6006/mockServiceWorker.js'): A bad HTTP response code (404) was received when fetching the script.
```
In order to get fonts working I had to change staticDirs in main.ts
```ts
staticDirs: [
{
from: '../public',
to: 'public',
},
],
```
When I change this back to default
```ts
staticDirs: ['../public']
```
the serviceworker loads correctly but my fonts dont...
Any ideas why?