The dev webpack config is using the raw loader for CSS. This means that fonts / images are not resolved and served by webpack. Interestingly the production build is using the css-loader.
I am working with css which is loading fonts (font-awesome). Changing the raw loader to css loader ensures that the fonts are loaded properly.
I don't have time for a PR. So I'm just leaving this here.
The dev webpack config is using the raw loader for CSS. This means that fonts / images are not resolved and served by webpack. Interestingly the production build is using the css-loader.
I am working with css which is loading fonts (font-awesome). Changing the raw loader to css loader ensures that the fonts are loaded properly.
I don't have time for a PR. So I'm just leaving this here.