我想在Laravel中使用ember-cli,我需要知道如何更改dist文件夹的路径。
答案 0 :(得分:35)
您可以通过编辑位于项目根目录的.ember-cli文件来配置输出路径。
{
"output-path": "my-output-folder/"
}
默认情况下,此值为" dist /"对于这两个' build'并且'服务'命令,如您在源代码中所示:
答案 1 :(得分:11)
使用ember build
时使用输出路径选项:
ember build --output-path=/not-dist
答案 2 :(得分:-2)
您还可以更改config / environment.js文件中的路径...
在module.exports = function(environment) { . . . }
<强> ENV.baseURL = '/your/new/path';
强>