diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c11cfecbe..90b61f72c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -16,7 +16,7 @@ Please note that this project has a [Contributor Code of Conduct](CODE_OF_CONDUC ## Getting Started -This app is written in [Typescript](https://www.typescriptlang.org/) and runs on [Node.js](https://nodejs.org/) **v14.x**. +This app is written in [Typescript](https://www.typescriptlang.org/) and runs on [Node.js](https://nodejs.org/) **v18.x**. Please install [Docker](https://www.docker.com/get-started) and [Docker Compose](https://docs.docker.com/compose/install/) to easily run the project locally. diff --git a/src/spa-proxy.ts b/src/spa-proxy.ts index 9c8d8dd2d..1a99551c2 100644 --- a/src/spa-proxy.ts +++ b/src/spa-proxy.ts @@ -6,7 +6,7 @@ const SPA_PATH = "/spa"; const proxy = httpProxy.createProxyServer({ target: { - host: "localhost", + host: "127.0.0.1", port: 3000, path: SPA_PATH },