We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28366dc commit 2d6f768Copy full SHA for 2d6f768
1 file changed
README.md
@@ -36,7 +36,9 @@ const FastBootAppServer = require('fastboot-app-server');
36
37
let server = new FastBootAppServer({
38
distPath: 'dist',
39
- gzip: true // Optional - Enables gzip compression.
+ gzip: true, // Optional - Enables gzip compression.
40
+ host: '0.0.0.0', // Optional - Sets the host the server listens on.
41
+ port: 4000 // Optional - Sets the port the server listens on (defaults to the PORT env var or 3000).
42
});
43
44
server.start();
0 commit comments