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

View file

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