fix
Some checks failed
Deploy ailog / build-and-deploy (push) Failing after 13m14s

This commit is contained in:
2025-06-11 12:34:24 +09:00
parent f1f179903d
commit f7c9e1085c
66 changed files with 9152 additions and 800 deletions

19
vercel.json Normal file
View File

@@ -0,0 +1,19 @@
{
"version": 2,
"builds": [
{
"src": "my-blog/public/**",
"use": "@vercel/static"
}
],
"routes": [
{
"src": "/api/ask",
"dest": "/api/ask.js"
},
{
"src": "/(.*)",
"dest": "/my-blog/public/$1"
}
]
}