diff --git a/README.md b/README.md
index 083e2cc..b6dfb90 100644
--- a/README.md
+++ b/README.md
@@ -4,7 +4,7 @@
The goal of [leaguestats.gg](https://leaguestats.gg) is to provide global complete data for all League of Legends summoners.
-Here is an [example](https://leaguestats.gg/summoner/euw/KCRekkles) of stats for some summoner.
+Here is an [example](https://leaguestats.gg/summoner/euw/KCNEXTADKING) of stats for some summoner.

@@ -14,11 +14,11 @@ Here is an [example](https://leaguestats.gg/summoner/euw/KCRekkles) of stats for
Development environment requirements :
-- [Node.js](https://nodejs.org/en/download/) >= 12.0.0
+- [Node.js](https://nodejs.org/en/download/) >= 18.0.0
- [PostgreSQL](https://www.postgresql.org/download/)
- [Redis](https://redis.io/download)
-You can use the `docker-compose.yml` file to quickly setup Postgre and Redis in development.
+You can use the `docker-compose.yml` file to quickly setup PostgreSQL and Redis in development.
Setting up the docker container:
@@ -77,6 +77,7 @@ Deploying the app :
```bash
> cd client
> npm run build
+> npm run preview # to test the build locally
# And
diff --git a/client/src/components/Form/SearchFormDropdown.vue b/client/src/components/Form/SearchFormDropdown.vue
index 2cf7671..c5b0cdd 100644
--- a/client/src/components/Form/SearchFormDropdown.vue
+++ b/client/src/components/Form/SearchFormDropdown.vue
@@ -69,7 +69,7 @@
diff --git a/server/package.json b/server/package.json
index 99bda99..8e6b411 100644
--- a/server/package.json
+++ b/server/package.json
@@ -5,7 +5,7 @@
"scripts": {
"dev": "node ace serve --watch",
"build": "node ace build --production",
- "start": "node server.js",
+ "start": "node build/server.js",
"lint": "eslint . --ext=.ts",
"format": "prettier --write ."
},