123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- const { name } = require("./package.json");
- let env = process.env.NODE_ENV.toString();
- //let project = process.env.VUE_APP_PROJECT.toString();
- console.log('env2', env);
- module.exports = {
- publicPath: '/sgshow', //相对路径
- outputDir: 'dist/sgshow', //打包名称
- assetsDir: "static", //静态目录
- lintOnSave: false, //关闭lint代码
- productionSourceMap: false, // 生产环境是否开启sourceMap
- // 配置跨域
- devServer: {
- port: 8080, // 服务端口
- //https: false,
- //hotOnly: false,
- proxy: {
- "/sgshow/duoduo-service": {
- 'target': 'http://duoduoenv.sagacloud.cn/', // 开发环境
- changeOrigin: true,
- pathRewrite: {
- '^/sgshow/duoduo-service': '/duoduo-service', // 接口环境
- },
- },
- // "/weather": {
- // // http://api.sagacloud.cn/duoduo-service/object-service/object/floor/queryFs
- // // target: 'http://192.168.0.14:52010', // 接 口环境
- // 'target': 'https://duoduoenv.sagacloud.cn/', // 开发环境
- // // target: 'http://test.persagy.com', // 测试环境
- // changeOrigin: true,
- // //logLevel: "debug",
- // pathRewrite: {
-
- // '^/weather': '', // 开发环境
- // },
- // },
- },
- },
- };
|