Prepare server deployment

This commit is contained in:
2026-05-12 16:21:00 +07:00
parent ac2cfca335
commit 713bfbcbb9
9 changed files with 120 additions and 16 deletions

View File

@ -6,12 +6,13 @@
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
"start:3007": "next start -p 3007 -H 127.0.0.1",
"lint": "eslint ."
},
"dependencies": {
"next": "16.0.0",
"react": "19.2.0",
"react-dom": "19.2.0"
"next": "16.2.6",
"react": "19.2.4",
"react-dom": "19.2.4"
},
"devDependencies": {
"typescript": "^5",
@ -19,6 +20,6 @@
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.0.0"
"eslint-config-next": "16.2.6"
}
}