const path = require('path'); const common = path.resolve(__dirname, '../common'); module.exports = { publicPath: `/${process.env.VUE_APP_ROUTER}`, outputDir: 'testpatent', productionSourceMap: false, configureWebpack: (config) => { Object.assign(config, { resolve: { alias: { '@': path.resolve(__dirname, './src'), '@c': path.resolve(__dirname, './src/components'), '@a': path.resolve(__dirname, './src/assets'), '@common': common, }, }, }); }, devServer: { port: '8001', proxy: { '/files': { target: 'http://broadcast.kqyjy.com', }, '/api': { target: 'http://broadcast.kqyjy.com', changeOrigin: true, ws: false, }, }, }, };