nuxtjs install sassloader
// install sass-loader@10 and add this to nuxt.config.js
export default {
build: {
loaders: {
sass: {
implementation: require('sass'),
},
scss: {
implementation: require('sass'),
},
},
}
}
Realy Silly Shark