Skip to content
Snippets Groups Projects
Verified Commit 42dafada authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Use SCSS instead of SASS i nwebpack

parent 9b0eadf0
No related branches found
No related tags found
1 merge request!1078Load vue style
......@@ -36,16 +36,15 @@ module.exports = {
use: ['vue-style-loader', 'css-loader'],
},
{
test: /\.s(c|a)ss$/,
test: /\.scss$/,
use: [
'vue-style-loader',
'css-loader',
{
loader: 'sass-loader',
options: {
implementation: require('sass'),
sassOptions: {
indentedSyntax: true
indentedSyntax: false
},
},
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment