灰烬CLI:index.php而不是index.html
作者:互联网
我想在余烬应用程序中使用index.php文件而不是index.html.
我发现可以在ember-cli-build.js文件中设置以下内容,该文件会将index.html输出为index.php
outputPaths: {
app: {
html: 'index.php'
}
}
但是,输入文件仍然必须命名为index.html.
是否有人知道如何配置应用程序,以使其源文件也名为index.php.
解决方法:
我找不到重命名源文件的方法,但是在将php添加到index.html文件并将其复制到build上的过程中没有问题.
我确实遇到了问题,但是在进行此更改之后,不再更新md5指纹.
我在这里找到解决方案https://github.com/ember-cli/ember-cli/issues/5658
改编自上一篇文章:
// in ember-cli-build.js
var app = new EmberApp(defaults, {
// Add options here
fingerprint : {
replaceExtensions : [ 'html', "php", 'css', 'js' ]
},
outputPaths : {
app : {
html : 'index.php',
}
}
});
标签:ember-js,ember-cli,php 来源: https://codeday.me/bug/20191119/2036620.html