const path = require('path'); const common = path.resolve(__dirname, '../common'); module.exports = { publicPath: `/${process.env.VUE_APP_ROUTER}`, outputDir: 'labmobile', 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', }, [process.env.VUE_APP_BASE_API]: { target: 'http://192.168.1.197:8112', changeOrigin: true, ws: false, // pathRewrite: { // ['^' + process.env.VUE_APP_BASE_API]: '', // }, }, }, }, };