Skip to content

Commit faae829

Browse files
authored
ember serve does not support --production argument
ember serve command does not have a `--production` argument. It has `-prod` as a shortcut for `--environment=production`.
1 parent 6e4d2bd commit faae829

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,9 +196,9 @@ You can also pass additional command line arguments via the
196196
`additionalArguments` option:
197197

198198
```js
199-
// equivalent to `ember serve --production`
199+
// equivalent to `ember serve -prod`
200200
app.startServer({
201-
additionalArguments: ['--production']
201+
additionalArguments: ['-prod']
202202
});
203203
```
204204

0 commit comments

Comments
 (0)