File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ " @remix-run/dev " : minor
3+ " @remix-run/react " : minor
4+ " @remix-run/server-runtime " : minor
5+ ---
6+
7+ Reuse dev server port for WebSocket (Live Reload,HMR,HDR)
8+
9+ As a result the ` webSocketPort ` /` --websocket-port ` option has been obsoleted.
10+ Additionally, scheme/host/port options for the dev server have been renamed.
11+
12+ Available options are:
13+
14+ | Option | flag | config | default |
15+ | -------------- | ------------------ | ---------------- | --------------------------------- |
16+ | Command | ` -c ` / ` --command ` | ` command ` | ` remix-serve <server build path> ` |
17+ | Scheme | ` --scheme ` | ` scheme ` | ` http ` |
18+ | Host | ` --host ` | ` host ` | ` localhost ` |
19+ | Port | ` --port ` | ` port ` | Dynamically chosen open port |
20+ | No restart | ` --no-restart ` | ` restart: false ` | ` restart: true ` |
21+
22+ Note that scheme/host/port options are for the _ dev server_ , not your app server.
23+ You probably don't need to use scheme/host/port option if you aren't configuring networking (e.g. for Docker or SSL).
You can’t perform that action at this time.
0 commit comments