diff --git a/bootstrap.js b/bootstrap.js new file mode 100644 index 0000000..4067975 --- /dev/null +++ b/bootstrap.js @@ -0,0 +1,10 @@ +const { Bootstrap } = require('@midwayjs/bootstrap'); +const koa = require('@midwayjs/koa'); + +Bootstrap.configure({ + imports: [ + koa, + require('./dist/configuration'), + ], + moduleDetector: false, +}).run();