1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- "use strict";
- const merge = require("webpack-merge");
- const prodEnv = require("./prod.env");
- module.exports = merge(prodEnv, {
- NODE_ENV: '"development"',
-
- IS_BASE_PACKAGE: "true",
-
-
- LAYOUT: '"layout"',
-
- BASE_API: '"/easy-mock"',
-
-
-
- NEED_LOGIN: "false",
-
-
-
- IS_OAUTH2: "false",
- CLIENT_ID: '"apigw91419331"',
- CLIENT_SECRET: '"apigw94003010"',
- APP_CODE: '"apigw10000003"',
-
- IS_MOCK: '"false"',
- PROXY_TABLE: JSON.stringify({
- "/easy-mock": {
- target: "http://192.168.10.14:7300/mock/5ca5ea72ab5bcfad10cf1607/mock",
- pathRewrite: {
- "^/easy-mock": ""
- }
- },
- "/setting-center": {
- target: "http://192.168.10.9:8070/openapi/v1/envs/dev/apps/test-190701-1700/clusters/default/namespaces",
- pathRewrite: {
- "^/setting-center": ""
- }
- }
- })
- });
|