We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47ab7cb commit b7e3cd6Copy full SHA for b7e3cd6
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