wangzhibo
2026-07-17 23c4d49cab8300f3e8ae0de7cac7e20fe79ff0d5
1
2
3
4
5
6
7
8
9
10
const { Bootstrap } = require('@midwayjs/bootstrap');
 
// 显式以组件方式引入用户代码
Bootstrap.configure({
  // 这里引用的是编译后的入口,本地开发不走这个文件
  // eslint-disable-next-line node/no-unpublished-require
  imports: require('./dist/index'),
  // 禁用依赖注入的目录扫描
  moduleDetector: false,
}).run();