FormidableLabs / spectacle-boilerplate

[DEPRECATED] Boilerplate project for getting started with Spectacle Core
579 stars 192 forks source link

CSS is not loaded through css-loader in dev mode #32

Open 0xR opened 8 years ago

0xR commented 8 years ago

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.