このツールについて
Vercel設定:SPAのrewriteとセキュリティヘッダー。
すぐ使える vercel.json — 内容を表示・コピー、または正しいファイル名でダウンロード。無料・100%ブラウザ内。
Vercel設定:SPAのrewriteとセキュリティヘッダー。
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"rewrites": [{ "source": "/(.*)", "destination": "/index.html" }],
"headers": [
{
"source": "/(.*)",
"headers": [{ "key": "X-Content-Type-Options", "value": "nosniff" }]
}
]
}
Vercel設定:SPAのrewriteとセキュリティヘッダー。
すぐ使える vercel.json — 内容を表示・コピー、または正しいファイル名でダウンロード。無料・100%ブラウザ内。