try prerender function

This commit is contained in:
martin-mfg
2025-06-22 09:52:53 +00:00
parent 23eb3bfaf3
commit 4a41426dcd
4 changed files with 12 additions and 3 deletions
+2 -3
View File
@@ -1,4 +1,5 @@
.vercel
.vercel/project.json
.vercel/README.txt
.env
node_modules
*.lock
@@ -12,5 +13,3 @@ vercel_token
!.vscode/extensions.json
!.vscode/settings.json
*.code-workspace
.vercel
@@ -0,0 +1,4 @@
{
"runtime": "nodejs20.x",
"handler": "index.js"
}
@@ -0,0 +1,3 @@
export default async (req, res) => {
return res.send("hello world");
};
@@ -0,0 +1,3 @@
{
"expiration": 5
}