diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-05-23 13:04:49 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-05-23 13:55:11 +0200 |
commit | 193df8304d3423fe28e33dbcaaba496e34c3bfd0 (patch) | |
tree | d3cc38587e000cb46e6645044174f6ada6f40b9e /settings/webpack.common.js | |
parent | 9296b81c8d709e46d4509aa936e9e41118e46e72 (diff) | |
download | nextcloud-server-193df8304d3423fe28e33dbcaaba496e34c3bfd0.tar.gz nextcloud-server-193df8304d3423fe28e33dbcaaba496e34c3bfd0.zip |
Updated settings package deps
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'settings/webpack.common.js')
-rw-r--r-- | settings/webpack.common.js | 25 |
1 files changed, 1 insertions, 24 deletions
diff --git a/settings/webpack.common.js b/settings/webpack.common.js index 8810c302448..ab9a39c83e2 100644 --- a/settings/webpack.common.js +++ b/settings/webpack.common.js @@ -21,36 +21,13 @@ module.exports = { use: [ 'vue-style-loader', 'css-loader', - 'sass-loader' - ], - }, - { - test: /\.sass$/, - use: [ - 'vue-style-loader', - 'css-loader', - 'sass-loader?indentedSyntax' ], }, { test: /\.vue$/, loader: 'vue-loader', options: { - loaders: { - // Since sass-loader (weirdly) has SCSS as its default parse mode, we map - // the "scss" and "sass" values for the lang attribute to the right configs here. - // other preprocessors should work out of the box, no loader config like this necessary. - 'scss': [ - 'vue-style-loader', - 'css-loader', - 'sass-loader' - ], - 'sass': [ - 'vue-style-loader', - 'css-loader', - 'sass-loader?indentedSyntax' - ] - } + loaders: {} // other vue-loader options go here } }, |