I've made one minor observation. When people regularly run multiple prototypes they might benefit from setting the port in the config so the same prototype runs on the same port each time. That can be done by setting port: 3010 in config.json or by putting PORT=3010 at the beginning of the start command e.g. PORT=3010 npm run dev. Would that be worth documenting?
I've made one minor observation. When people regularly run multiple prototypes they might benefit from setting the port in the config so the same prototype runs on the same port each time. That can be done by setting
port: 3010
inconfig.json
or by puttingPORT=3010
at the beginning of the start command e.g.PORT=3010 npm run dev
. Would that be worth documenting?