nocobase/packages/app/.umirc.ts

34 lines
669 B
TypeScript
Raw Normal View History

import { defineConfig } from 'umi';
export default defineConfig({
2020-12-19 07:48:56 +00:00
title: false,
nodeModulesTransform: {
type: 'none',
},
define: {
'process.env.API': `/api`,
// 'process.env.API': `http://localhost:${process.env.HTTP_PORT}/api`,
},
proxy: {
'/api': {
'target': `http://localhost:${process.env.HTTP_PORT}/`,
'changeOrigin': true,
'pathRewrite': { '^/api' : '/api' },
},
},
2020-12-11 04:34:50 +00:00
locale: {
default: 'zh-CN',
// antd: false,
// title: false,
baseNavigator: false,
baseSeparator: '-',
},
routes: [
{
exact: false,
path: '/:path(.*)',
component: '@/pages/index',
},
],
});