mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 13:37:37 +00:00
34 lines
669 B
TypeScript
34 lines
669 B
TypeScript
import { defineConfig } from 'umi';
|
|
|
|
export default defineConfig({
|
|
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' },
|
|
},
|
|
},
|
|
locale: {
|
|
default: 'zh-CN',
|
|
// antd: false,
|
|
// title: false,
|
|
baseNavigator: false,
|
|
baseSeparator: '-',
|
|
},
|
|
routes: [
|
|
{
|
|
exact: false,
|
|
path: '/:path(.*)',
|
|
component: '@/pages/index',
|
|
},
|
|
],
|
|
});
|