如何访问ENV变量的index.html在ember.js

问题描述 投票:0回答:1

我使用ember.js,对我们的要求,我们必须表现出的脚本标记(index.html文件),只能在生产,而不是在发展。有没有一种方法来实现这一目标?

ember.js ember-data ember-cli
1个回答
1
投票

我知道的修改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>
      `;
    }
}
© www.soinside.com 2019 - 2024. All rights reserved.