cube.js 自定义首页显示信息
实际上是一个简单的问题,就是依赖了initApp 参数
参考使用
- index.js
module.exports = function(app){
if(process.env.NODE_ENV=="production"){
app.get("/",function(req,res){
res.send("index page")
})
}
}
- cube.js
const index = require("./index")
module.exports = {
initApp:index
};
说明
通过以上配置就可以修改默认的index 信息了,对于生产环境就不会显示默认的信息了,此问题slack 上也有别人问到