1234567891011121314151617181920212223242526272829303132 |
- module.exports = {
- lintOnSave: false,
- assetsDir: "static",
- publicPath: "/",
- outputDir: "dist",
- productionSourceMap: false,
- devServer: {
- port: 80,
- proxy: {
- [process.env.VUE_APP_BASE_API]: {
- // 本地环境
- // target: 'http://192.168.1.21:8080',
- // 服务器环境(测试)
- target: "https://smzctest.shizhi.tv/prod-api",
- // 服务器环境(生产)
- // target: 'https://smzc.shizhi.tv/prod-api',
- changeOrigin: true,
- pathRewrite: {
- ["^" + process.env.VUE_APP_BASE_API]: "",
- },
- },
- // 人脸识别
- "/oldRlsb": {
- target: "https://ai.sdaer.cn",
- pathRewrite: {
- "^/oldRlsb": "",
- },
- changeOrigin: true,
- },
- },
- },
- };
|