micro-app/config/routes/index.ts
2024-02-29 14:52:50 +08:00

24 lines
430 B
TypeScript

export default {
routes: [
{
path: '/',
component: '@/layouts/index.tsx',
routes: [
{
path: '/app1',
component: '@/layouts/app-layout.tsx',
routes: [
{
path: '/project/*',
microApp: 'app1',
},
],
},
{
path: '/app2/*',
microApp: 'app2',
},
],
},
],
};