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.
- [Vuejs]-Accessing Vue.$router inside an external "service" class
- [Vuejs]-How to add/remove class from parent div on change radio button in vuejs
Source:stackexchange.com