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
Fastboot is a solution to run Ember applications server-side, in a Node.js environment. (Like every documentation in the Ember world, Fastboot introduction to server-side rendering offers very enlightening comparisons to teach the concept).
To use Fastboot, you have to install ember-cli-fastboot. In other words, if this specific addon is present in the list of active addons used by your app, then it means that a bunch of Fastboot-related things need to be there and work as expected in the new Embroider world.
embroider_macros_fastboot_init.js
embroider_macros_fastboot_init.js is a script asset created in the rewritten app. Once created, it used to be referenced in the index.html under a <fastboot-script> tag. This is no longer the case since we no longer modify the index.html between the initial Ember app and the rewritten app consumed by Vite.
This task consists of:
Virtualizing embroider_macros_fastboot_init.js so Embroider provides its content to Vite.
If necessary, emitting assets/embroider_macros_fastboot_init.js in the production build.
The text was updated successfully, but these errors were encountered:
About FastBoot support
Fastboot is a solution to run Ember applications server-side, in a Node.js environment. (Like every documentation in the Ember world, Fastboot introduction to server-side rendering offers very enlightening comparisons to teach the concept).
To use Fastboot, you have to install ember-cli-fastboot. In other words, if this specific addon is present in the list of active addons used by your app, then it means that a bunch of Fastboot-related things need to be there and work as expected in the new Embroider world.
embroider_macros_fastboot_init.js
embroider_macros_fastboot_init.js
is a script asset created in the rewritten app. Once created, it used to be referenced in theindex.html
under a<fastboot-script>
tag. This is no longer the case since we no longer modify theindex.html
between the initial Ember app and the rewritten app consumed by Vite.This task consists of:
embroider_macros_fastboot_init.js
so Embroider provides its content to Vite.assets/embroider_macros_fastboot_init.js
in the production build.The text was updated successfully, but these errors were encountered: