Files
apollo/packages/test-e2e-composition/vue.config.js
T
Guillaume Chau 9825e47ac2 test: fix
2020-10-17 12:20:46 +02:00

33 lines
757 B
JavaScript

/** @type {import('@vue/cli-service').ProjectOptions} */
module.exports = {
pluginOptions: {
apollo: {
enableMocks: false,
enableEngine: false,
},
},
productionSourceMap: false,
/* Without vue-cli-plugin-apollo 0.20.0+ */
// chainWebpack: config => {
// config.module
// .rule('vue')
// .use('vue-loader')
// .loader('vue-loader')
// .tap(options => {
// options.transpileOptions = {
// transforms: {
// dangerousTaggedTemplateString: true,
// },
// }
// return options
// })
// }
chainWebpack (config) {
config.resolve.symlinks(false)
config.resolve.alias.set('vue-demi', '@vue/composition-api')
},
}