/* * @Description: 这里输入文件功能 * @Author: zhoupeng * @Date: 2020-04-30 09:51:44 * @LastEditTime: 2020-05-07 17:07:56 */ // ref: https://umijs.org/config/ export default { treeShaking: true, history: 'hash', hash: true, targets: { chrome: 49, firefox: 45, safari: 7, edge: 13, ios: 7 }, plugins: [ [ 'umi-plugin-react', { antd: false, dva: true, dynamicImport: { webpackChunkName: true }, title: 'app-H5', dll: true, routes: { exclude: [ /models\//, /services\//, /model\.(t|j)sx?$/, /service\.(t|j)sx?$/, /components\//, ], }, }, ], ], exportStatic: true, base: './', publicPath: './', runtimePublicPath: true, proxy: { '/api': { target: 'http://152dev.chongaibao.com', // target: 'http://dev.chongaitianxia.cn', //target: 'http://192.168.2.60:8088', changeOrigin: true, pathRewrite: { '^/': '/', }, }, '/oa-web': { // target: 'http://152dev.chongaibao.com', // target: 'http://dev.chongaitianxia.cn', target: 'http://192.168.18.112:8600', changeOrigin: true, pathRewrite: { '^/': '/', }, }, }, };