fedimovies-web/vue.config.js
2022-05-18 20:09:52 +00:00

16 lines
348 B
JavaScript

module.exports = {
chainWebpack: (config) => {
// Enable reactivity transform
// https://github.com/vuejs/rfcs/discussions/369
config.module
.rule("vue")
.use("vue-loader")
.tap((options) => {
return {
...options,
reactivityTransform: true,
}
})
},
lintOnSave: false,
}