[Vuejs]-Refused to apply style because its MIME type ('text/html')

0👍

Im using MiniCssExtractPlugin in WebPack and I realized missing ‘.‘ will caused below issue.

from

filename: '/style.[contenthash].css'

to

filename: './style.[contenthash].css'
//correct way should be like this

new MiniCssExtractPlugin({
  publicPath: './sass/',
  filename: './style.[contenthash].css'
});

Hope this help you.

Leave a comment