/* * @Author: Chengliang 1546584672@qq.com * @Date: 2022-08-04 10:22:55 * @LastEditors: Chengliang 1546584672@qq.com * @LastEditTime: 2022-12-15 11:50:19 * @FilePath: /org-chart-frant/.umirc.ts * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE */ import { defineConfig } from 'umi'; export default defineConfig({ hash: true, history: { type: 'hash' }, base: '/spa/orgChart/', // exportStatic: {}, publicPath: './', nodeModulesTransform: { type: 'none', }, routes: [ { path: '/user', component: '@/pages/user' }, { path: '/company', component: '@/pages/company' }, ], fastRefresh: {}, antd: {}, proxy: { '/api': { // 标识需要进行转换的请求的url target: 'http://hr.jinyosolar.cn:90/api', // 服务端域名 / http://localhost:8686 changeOrigin: true, // 允许域名进行转换 pathRewrite: { '^/api': '' }, // 将请求url里的ci去掉 }, }, });