Browse Source

Merge 6749361201 into 3fe533c919

pull/84/merge
Shailendher 8 years ago
committed by GitHub
parent
commit
4b3bbafdbe
  1. 5
      template/webpack.config.js

5
template/webpack.config.js

@ -19,8 +19,9 @@ module.exports = {
// 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'
// refer: https://github.com/vuejs/vue-loader/blob/master/docs/en/configurations/pre-processors.md#sass-loader-caveat
'scss': ['vue-style-loader', 'css-loader', 'sass-loader'],
'sass': ['vue-style-loader', 'css-loader', 'sass-loader?indentedSyntax']
{{/sass}}
}
// other vue-loader options go here

Loading…
Cancel
Save