mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 15:55:39 +00:00
13 lines
232 B
Smarty
Executable File
13 lines
232 B
Smarty
Executable File
import { defineConfig } from 'umi';
|
|
|
|
export default defineConfig({
|
|
nodeModulesTransform: {
|
|
type: 'none',
|
|
},
|
|
{{ ^conventionRoutes }}
|
|
routes: [
|
|
{ path: '/', component: '@/pages/index' },
|
|
],
|
|
{{ /conventionRoutes }}
|
|
});
|