.├── config│ └── config.ts├── dist├── mock│ └── app.ts|tsx├── src│ ├── .umi│ ├── .umi-production│ ├── app.ts│ ├── layouts│ │ ├── BasicLayout.tsx│ │ ├── index.less│ ├── models│ │ ├── global.ts│ │ └── index.ts│ ├── pages│ │ ├── index.less│ │ └── index.tsx│ ├── utils // 推荐目录│ │ └── index.ts│ ├── services // 推荐目录│ │ └── api.ts│ ├── global.ts│ ├── global.(css|less|sass|scss)│ └── loading.tsx├── node_modules│ └── .cache│ ├── bundler-webpack│ ├── mfsu│ └── mfsu-deps├── .env├── plugin.ts ├── .umirc.ts // 与 config/config 文件 2 选一├── package.json├── tsconfig.json└── typings.d.ts