We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53a1fd1 commit e875d2cCopy full SHA for e875d2c
docs/webpack.md
@@ -59,6 +59,25 @@ module.exports = {
59
}
60
```
61
62
+#### Modifying Loader Options
63
+
64
+``` js
65
+// vue.config.js
66
+module.exports = {
67
+ chainWebpack: config => {
68
+ config.module
69
+ .rule('scss')
70
+ .use('sass-loader')
71
+ .tap(options =>
72
+ merge(options, {
73
+ includePaths: [path.resolve(__dirname, 'node_modules')],
74
+ })
75
+ )
76
+ }
77
+}
78
+```
79
80
81
#### Modifying Plugin Options
82
83
``` js
0 commit comments