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
328 B

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