Skip to content

Commit

Permalink
fix(ui): yarn link @vue/ui
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume Chau committed Jun 4, 2018
1 parent 251509c commit 145492b
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions packages/@vue/cli-ui/vue.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,25 @@
const merge = require('deepmerge')
const path = require('path')

module.exports = {
pluginOptions: {
graphqlMock: false,
apolloEngine: false,
graphqlTimeout: 1000000
},
configureWebpack: {
resolve: {
symlinks: false
}
},
chainWebpack: config => {
config.module.rule('stylus').oneOf('vue').use('postcss-loader')
.tap(options =>
merge(options, {
config: {
path: path.resolve(__dirname, '.postcssrc')
}
})
)
}
}

0 comments on commit 145492b

Please sign in to comment.