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 251509c commit 145492bCopy full SHA for 145492b
packages/@vue/cli-ui/vue.config.js
@@ -1,7 +1,25 @@
1
+const merge = require('deepmerge')
2
+const path = require('path')
3
+
4
module.exports = {
5
pluginOptions: {
6
graphqlMock: false,
7
apolloEngine: false,
8
graphqlTimeout: 1000000
9
+ },
10
+ configureWebpack: {
11
+ resolve: {
12
+ symlinks: false
13
+ }
14
15
+ chainWebpack: config => {
16
+ config.module.rule('stylus').oneOf('vue').use('postcss-loader')
17
+ .tap(options =>
18
+ merge(options, {
19
+ config: {
20
+ path: path.resolve(__dirname, '.postcssrc')
21
22
+ })
23
+ )
24
}
25
0 commit comments