modified: package-lock.json

modified:   package.json
	modified:   server/nextServer.ts
This commit is contained in:
Marvin 2025-08-10 19:02:50 +00:00
parent fd605d9c81
commit a829eb949b
3 changed files with 229 additions and 906 deletions

1129
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -72,7 +72,7 @@
"drizzle-orm": "0.44.4", "drizzle-orm": "0.44.4",
"eslint": "9.32.0", "eslint": "9.32.0",
"eslint-config-next": "15.4.6", "eslint-config-next": "15.4.6",
"express": "4.21.2", "express": "5.1.0",
"express-rate-limit": "7.5.1", "express-rate-limit": "7.5.1",
"glob": "11.0.3", "glob": "11.0.3",
"helmet": "8.1.0", "helmet": "8.1.0",
@ -121,7 +121,7 @@
"@types/cookie-parser": "1.4.9", "@types/cookie-parser": "1.4.9",
"@types/cors": "2.8.19", "@types/cors": "2.8.19",
"@types/crypto-js": "^4.2.2", "@types/crypto-js": "^4.2.2",
"@types/express": "5.0.0", "@types/express": "5.0.3",
"@types/express-session": "^1.18.2", "@types/express-session": "^1.18.2",
"@types/jmespath": "^0.15.2", "@types/jmespath": "^0.15.2",
"@types/js-yaml": "4.0.9", "@types/js-yaml": "4.0.9",

View file

@ -15,7 +15,7 @@ export async function createNextServer() {
const nextServer = express(); const nextServer = express();
nextServer.all("*", (req, res) => { nextServer.all("/{*splat}", (req, res) => {
const parsedUrl = parse(req.url!, true); const parsedUrl = parse(req.url!, true);
return handle(req, res, parsedUrl); return handle(req, res, parsedUrl);
}); });