I would like to use ember-cli with Laravel and I need to know how I can change the path of the dist folder.
You can configure the output path by editing the .ember-cli file, which is located at the root of your project.
{
"output-path": "my-output-folder/"
}
By default, this value is "dist/" for both 'build' and 'serve' commands, as you can see in the source code here:
https://github.com/stefanpenner/ember-cli/blob/0b7dcf3a0cdb35114643b076c91afda79efda6fc/lib/commands/build.js
https://github.com/stefanpenner/ember-cli/blob/0b7dcf3a0cdb35114643b076c91afda79efda6fc/lib/commands/serve.js
Use the output path option when using ember build
:
ember build --output-path=/not-dist
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With