我使用ember.js,对我们的要求,我们必须表现出的脚本标记(index.html文件),只能在生产,而不是在发展。有没有一种方法来实现这一目标?
我知道的修改index.html的最好的方法是在使用中回购插件的构建过程。
生成与插件
ember generate in-repo-addon prodction-scripts
然后在/lib/production-scripts/index.js
补充:
contentFor: function (type, config) {
if (type === 'head' && config.environment === 'production') {
//inline this CSS so it is parsed the fastest
return `
<script></script>
`;
}
}