[Vuejs]-Css fails to parse using vue webpack-simple

3👍

I needed to install style-loader

npm install style-loader --save-dev

And then add it to webpack.config.js. Specifically, I added the following module rule:

{
    test: /\.css$/,
    loader: "style-loader!css-loader"
},

Leave a comment