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