serve
Starts a Frontity server in production mode.
npx frontity serve [options]
Option | Description |
--port <port> | Runs the server on a custom port. Default is 3000. Related environment variable: FRONTITY_SERVE_PORT |
--https | |
--help | Output usage information |
Examples
- Starts a server (using the code in the
build
folder generated by thenpx frontity build
command) using https and port 3002
npx frontity serve --https --port 3002
Runs the server on a custom port. Default is
3000
.If detected, and no
--port <port>
option is defined for serve
Frontity command, this environment variable value will be applied.Example:
FRONTITY_SERVE_PORT=3002
Runs the server using https.
Example:
FRONTITY_SERVE_HTTPS=true
Last modified 2yr ago