Skip to content

Commit 6f1e895

Browse files
authored
Merge pull request #69 from felixbuenemann/patch-1
Fix comma position in server example
2 parents 895d0e2 + 9aaffb9 commit 6f1e895

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ 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"
4747
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.
4848
});
4949

0 commit comments

Comments
 (0)