wangrong
2026-07-20 b46304989eaefa139e41456331e419cc3b2ff4cc
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();