Skip to content

Commit 93375db

Browse files
committed
update docs
1 parent 59e6c51 commit 93375db

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ let server = new FastBootAppServer({
4343
gzip: true, // Optional - Enables gzip compression.
4444
host: '0.0.0.0', // Optional - Sets the host the server listens on.
4545
port: 4000, // Optional - Sets the port the server listens on (defaults to the PORT env var or 3000).
46-
sandboxGlobals: { GLOBAL_VALUE: MY_GLOBAL } // Optional - Make values available to the Ember app running in the FastBoot server, e.g. "MY_GLOBAL" will be available as "GLOBAL_VALUE"
46+
sandboxGlobals: { GLOBAL_VALUE: MY_GLOBAL } // Optional - Make values available to the Ember app running in the FastBoot server, e.g. "MY_GLOBAL" will be available as "GLOBAL_VALUE",
47+
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.
4748
});
4849

4950
server.start();

0 commit comments

Comments
 (0)