| 123456789101112131415161718192021222324 |
- module.exports = {
- env: {
- NODE_ENV: '"development"',
- },
- defineConstants: {
- TARO_ACT_HOST: '"http://localhost:3000"',
- },
- mini: {},
- h5: {
- devServer: {
- port: 10086,
- host: "192.168.10.5",
- proxy: {
- "/api": {
- target: "http://127.0.0.1:8181",
- changeOrigin: true,
- pathRewrite: {
- "^/api": "",
- },
- },
- },
- },
- },
- };
|