You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
368 B

2 years ago
  1. import { defineConfig } from 'umi';
  2. export default defineConfig({
  3. routes: [
  4. { path: '/', component: 'index' },
  5. { path: '/docs', component: 'docs' },
  6. ],
  7. npmClient: 'npm',
  8. monorepoRedirect: {
  9. peerDeps: true,
  10. },
  11. mfsu: false,
  12. plugins: ['@umijs/plugins/dist/qiankun'],
  13. qiankun: {
  14. slave: {},
  15. },
  16. // extraBabelIncludes: [/@lishican/],
  17. });