Adds sass style support for vue

This commit is contained in:
Michael Weimann
2018-12-02 11:02:25 +01:00
parent a1edb667b9
commit c121a936ef
2 changed files with 10 additions and 0 deletions

View File

@@ -14,6 +14,14 @@ module.exports = {
test: /\.css$/,
use: ['vue-style-loader', 'css-loader']
},
{
test: /\.scss$/,
use: [
'vue-style-loader',
'css-loader',
'sass-loader'
]
},
{
test: /\.vue$/,
loader: 'vue-loader'