LaiTool/vue.config.js

14 lines
273 B
JavaScript
Raw Permalink Normal View History

2024-08-08 16:24:47 +08:00
export default {
chainWebpack: (config) => {
config.module
.rule('vue')
.use('vue-loader')
.tap((options) => {
options.compilerOptions = {
isCustomElement: (tag) => tag === 'webview'
}
return options
})
}
}