Hi, my assets folder setup is like this:
assets
├── builds/
│ ├── bundle.css
│ ├── bundle.js
│ └── ...
└── fonts/
└── fontfiles ...
in my css I am linking to url('../fonts/fontfiles')
after running npm run start i get the error Module not found: Error: Can't resolve ...
but if i run npm run build the font is loaded correctly. but on the dev server it won't work.
it is exactly setup like a previous project and it works fine there