Skip to content

Commit ec6f0ec

Browse files
authored
Fixing readme
Looks like a bad merge re-ordered some lines.
1 parent 01a9f9b commit ec6f0ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/fastboot-app-server/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ let server = new FastBootAppServer({
4242
host: '0.0.0.0', // Optional - Sets the host the server listens on.
4343
port: 4000, // Optional - Sets the port the server listens on (defaults to the PORT env var or 3000).
4444
buildSandboxGlobals(defaultGlobals) { // Optional - Make values available to the Ember app running in the FastBoot server, e.g. "MY_GLOBAL" will be available as "GLOBAL_VALUE"
45-
log: true, // Optional - Specifies whether the server should use its default request logging. Useful for turning off default logging when providing custom logging middlewares
4645
return Object.assign({}, defaultGlobals, { GLOBAL_VALUE: MY_GLOBAL });
4746
},
47+
log: true, // Optional - Specifies whether the server should use its default request logging. Useful for turning off default logging when providing custom logging middlewares
4848
chunkedResponse: true // Optional - Opt-in to chunked transfer encoding, transferring the head, body and potential shoeboxes in separate chunks. Chunked transfer encoding should have a positive effect in particular when the app transfers a lot of data in the shoebox.
4949
});
5050

0 commit comments

Comments
 (0)