We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 779e888 commit 0293489Copy full SHA for 0293489
1 file changed
packages/ember-cli-fastboot/index.js
@@ -336,8 +336,13 @@ module.exports = {
336
this.fastboot = new FastBoot(fastbootOptions);
337
}
338
339
+ let appConfig = this._getHostAppConfig();
340
+
341
let fastbootMiddleware = FastBootExpressMiddleware({
- fastboot: this.fastboot
342
+ fastboot: this.fastboot,
343
+ visitOptions: {
344
+ renderMode: appConfig.fastboot.renderMode
345
+ }
346
});
347
348
fastbootMiddleware(req, resp, next);
0 commit comments