You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -385,6 +385,21 @@ Prototype extensions do not currently work across node "realms." Fastboot
385
385
applications operate in two realms, a normal node environment and a [virtual machine](https://nodejs.org/api/vm.html). Passing objects that originated from the normal realm will not contain the extension methods
386
386
inside of the sandbox environment. For this reason, it's encouraged to [disable prototype extensions](https://guides.emberjs.com/v2.4.0/configuring-ember/disabling-prototype-extensions/).
387
387
388
+
### Double build times and no incremental builds
389
+
390
+
Due to limitations in Ember CLI, builds take twice as long to generate the
391
+
second set of FastBoot assets. This also means incremental builds with
392
+
live reload don't work either. This aims to be resolved by FastBoot 1.0.
393
+
In the mean time, we introduce a short-circuit evironment flag to not do
394
+
a FastBoot build:
395
+
396
+
```
397
+
FASTBOOT_DISABLED=true ember build
398
+
```
399
+
400
+
This is useful to keep your existing workflow while in development, while
401
+
still being able to deploy FastBoot. This flag will be removed in FastBoot
0 commit comments