Webpack You may need an appropriate loader to handle this file type, with sue Webpack You may need an appropriate loader to handle this file type, with sue vue.js vue.js

Webpack You may need an appropriate loader to handle this file type, with sue


Had the same issue. Looking into the docs for vue-loader css needs rules too.

Install the packages vue-style-loader and css-loader

Add the following to your rules section in webpack.config.js:

  {    test: /\.css$/,    use: [      'vue-style-loader',      'css-loader'    ]  },