Merge pull request #1246 from Lokowitz/update-express

Update express to version 5
This commit is contained in:
Owen Schwartz
2025-08-12 20:38:02 -07:00
committed by GitHub
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);
});