We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37ff337 commit 779e888Copy full SHA for 779e888
1 file changed
packages/ember-cli-fastboot/lib/broccoli/fastboot-config.js
@@ -32,6 +32,10 @@ module.exports = class FastBootConfig extends Plugin {
32
this.fastbootConfig[appConfigModule] = options.appConfig;
33
this._fileToChecksumMap = {};
34
35
+ if (options.appConfig.fastboot) {
36
+ this.renderMode = options.appConfig.fastboot.renderMode;
37
+ }
38
+
39
if (this.fastbootAppConfig && this.fastbootAppConfig.htmlFile) {
40
this.htmlFile = this.fastbootAppConfig.htmlFile;
41
} else {
@@ -174,6 +178,7 @@ module.exports = class FastBootConfig extends Plugin {
174
178
schemaVersion: LATEST_SCHEMA_VERSION,
175
179
manifest: this.manifest,
176
180
hostWhitelist: this.normalizeHostWhitelist(),
181
+ renderMode: this.renderMode,
177
182
config: this.fastbootConfig,
183
appName: this.appName,
184
}
0 commit comments