set METEOR_SETTINGS={"public": {"stage": "development"}}
meteor
然后这一行:
console.log(Meteor.settings.public.stage);
导致此错误:
W20150612-20:45:38.338(-7)? (STDERR) TypeError: Cannot read property 'stage' of undefined
我做错了什么?
答案 0 :(得分:2)
据我所知,环境变量仅适用于部署模式(运行捆绑包)。
在开发中,即在运行meteor
时,您需要使用--settings
命令行参数来指定包含设置的文件。