123456789101112131415161718192021222324252627282930313233 |
-
- // ref: https://umijs.org/config/
- export default {
- history: 'hash',
- treeShaking: true,
- proxy: {
- "/api": {
- "target": "http://127.0.0.1:8088/",
- "changeOrigin": true,
- // "pathRewrite": { "^/api" : "" }
- }
- },
- plugins: [
- // ref: https://umijs.org/plugin/umi-plugin-react.html
- ['umi-plugin-react', {
- antd: true,
- dva: true,
- dynamicImport: { webpackChunkName: true },
- title: 'miniapp-service',
- dll: false,
-
- routes: {
- exclude: [
- /models\//,
- /services\//,
- /model\.(t|j)sx?$/,
- /service\.(t|j)sx?$/,
- /components\//,
- ],
- },
- }],
- ],
- }
|