Chatwoot/vue.config.js

20 lines
362 B
JavaScript
Raw Permalink Normal View History

2022-08-18 06:14:22 +00:00
module.exports = {
chainWebpack: config => {
config.resolve.alias.set('vue', '@vue/compat');
config.module
.rule('vue')
.use('vue-loader')
.tap(options => {
return {
...options,
compilerOptions: {
compatConfig: {
MODE: 2,
},
},
};
});
},
};