123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- // ref: https://umijs.org/config/
- export default {
- treeShaking: true,
- hash: true,
- routes: [
- {
- path: '/',
- component: '../layouts/index',
- routes: [
- { path: '/', component: '../pages/index' },
- // { path: '/explain', component: '../pages/Home' },
- // { path: '/hotlives', component: '../pages/HotLives' },
- ]
- }
- ],
- plugins: [
- // ref: https://umijs.org/plugin/umi-plugin-react.html
- ['umi-plugin-react', {
- antd: true,
- dva: false,
- dynamicImport: false, // { webpackChunkName: true },
- title: '',
- dll: true,
- routes: {
- exclude: [
- /models\//,
- /services\//,
- /model\.(t|j)sx?$/,
- /service\.(t|j)sx?$/,
- /components\//,
- ],
- },
- lessLoaderOptions: {
- javascriptEnabled: true,
- }
- }],
- ],
- proxy: {
- '/api-manage': {
- //target: 'http://api.starbuds.laylib.com',
- target: 'http://localhost:9210',
- changeOrigin: true,
- //pathRewrite: { '^/server': '' },
- },
- '/api-common': {
- //target: 'http://api.starbuds.laylib.com',
- target: 'http://localhost:9230',
- changeOrigin: true,
- //pathRewrite: { '^/server': '' },
- },
- '/api-app': {
- //target: 'http://api.starbuds.laylib.com',
- target: 'http://localhost:9201',
- changeOrigin: true,
- //pathRewrite: { '^/server': '' },
- }
- },
- targets: {
- ie: 9,
- }
- }
|