const { defineConfig } = require('@vue/cli-service') module.exports = defineConfig({ publicPath: '/wcs', transpileDependencies: true, chainWebpack: (config) => { config.plugin('define').tap((defineConfig) => { Object.assign(defineConfig[0], { __VUE_OPTIONS_API__: 'true', __VUE_PROD_DEVTOOLS__: false, __VUE_PROD_HYDRATION_MISMATCH_DETAILS__: false }) return defineConfig }) } })