1234567891011121314151617181920212223242526272829 |
- module.exports = {
- lintOnSave: false,
- assetsDir: 'static',
- publicPath: "/",
- outputDir: 'dist',
- productionSourceMap: false,
- devServer: {
- host: '0.0.0.0',
- port: 3000,
- proxy: {
- [process.env.VUE_APP_BASE_API]: {
- // target: 'http://192.168.1.24:8080',
- target: 'http://1.82.219.241:8080', // 测试
- // target: 'http://1.82.219.240:8080', // 生产
- changeOrigin: true,
- pathRewrite: {
- ['^' + process.env.VUE_APP_BASE_API]: ''
- }
- },
- "/printFile": {
- target: 'https://smzc-1253299035.cos.ap-nanjing.myqcloud.com',
- changeOrigin: true,
- },
- },
- client: {
- overlay: false
- }
- },
- }
|