12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- const { name } = require("./package.json");
- let env = process.env.NODE_ENV.toString();
- console.log('env2', env);
- module.exports = {
- publicPath: '/sgshow',
- outputDir: 'sgshow',
- assetsDir: "static",
- lintOnSave: false,
- productionSourceMap: false,
-
- devServer: {
- port: 8080,
-
-
- proxy: {
- "/daping": {
-
-
- 'target': 'http://api.sagacloud.cn/',
-
- changeOrigin: true,
-
- pathRewrite: {
- '^/daping': 'http://api.sagacloud.cn/',
-
- },
- },
- "/weather": {
-
-
- 'target': 'https://duoduoenv.sagacloud.cn/',
-
- changeOrigin: true,
-
- pathRewrite: {
-
- '^/weather': 'https://duoduoenv.sagacloud.cn/',
- },
- },
- },
- },
- };
|