|
@@ -13,6 +13,6 @@ module.exports=function (app){
|
|
|
let bootController = new BootController();
|
|
|
|
|
|
// 引导页面
|
|
|
- router.get('/:compilation', bootController.boot);
|
|
|
+ router.get('/:compilation', bootController.init, bootController.boot);
|
|
|
app.use('/boot', router);
|
|
|
};
|