From 3d638594129703efc332c48fdf49bafbf375e14b Mon Sep 17 00:00:00 2001 From: pikiou Date: Thu, 18 Nov 2021 06:48:09 +0100 Subject: [PATCH] Changes server prod port to 4000 --- README.md | 2 +- src/config/prod.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bf20fc1..1c835f2 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ I use [cross-env](https://github.com/kentcdodds/cross-env) to set and use enviro | ---------------- | ---------------------------------------------------------------------------------- | | `dev` | Runs your app on the development server at `localhost:3000`. HMR will be enabled. | | `dev:build` | Bundles server-side files in development mode and put it to the `./public/server`. | -| `start` | Runs your app on the production server only at `localhost:8080`. | +| `start` | Runs your app on the production server only at `localhost:8088`. | | `build` | Bundles both server-side and client-side files. | | `build:server` | Bundles server-side files in production mode and put it to the `./public/server`. | | `build:client` | Bundles client-side files in production mode and put it to the `./public/assets`. | diff --git a/src/config/prod.ts b/src/config/prod.ts index c19e800..cc0ef1e 100755 --- a/src/config/prod.ts +++ b/src/config/prod.ts @@ -1,3 +1,3 @@ export default { - PORT: 8080, + PORT: 4000, }