Stylesheet not loaded because of MIME-type

前端 未结 30 2891
猫巷女王i
猫巷女王i 2020-11-22 07:29

I\'m working on a website that uses gulp to compile and browser sync to keep the browser synchronised with my changes.

The gulp task compiles everything

30条回答
  •  一整个雨季
    2020-11-22 08:06

    I was working with the React.js app and also had this error which led me here. This is what helped me. Instead of adding to the index.html I added an import to the component where I need to use this stylesheet:

    import 'path/to/stylesheet.css';
    

提交回复
热议问题