From 3cd41c51ce31690048616b237dc835b6a941f589 Mon Sep 17 00:00:00 2001 From: durumi99 Date: Sat, 24 Jan 2026 16:20:31 +0900 Subject: [PATCH] =?UTF-8?q?.gitignore=20=EB=B0=8F=20vercel.json=20?= =?UTF-8?q?=ED=8C=8C=EC=9D=BC=20=EC=A0=95=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 3 --- vercel.json | 71 ----------------------------------------------------- 2 files changed, 74 deletions(-) delete mode 100644 vercel.json diff --git a/.gitignore b/.gitignore index 4b95297..438657a 100644 --- a/.gitignore +++ b/.gitignore @@ -13,9 +13,6 @@ dist-ssr *.local .env -# Vercel -.vercel - # Editor directories and files .vscode/* !.vscode/extensions.json diff --git a/vercel.json b/vercel.json deleted file mode 100644 index 77e1a5d..0000000 --- a/vercel.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "$schema": "https://openapi.vercel.sh/vercel.json", - "buildCommand": "npm run build", - "outputDirectory": "dist", - "framework": "vite", - "rewrites": [ - { - "source": "/(.*)", - "destination": "/index.html" - } - ], - "headers": [ - { - "source": "/assets/(.*)", - "headers": [ - { - "key": "Cache-Control", - "value": "public, max-age=31536000, immutable" - } - ] - }, - { - "source": "/(.*\\.(js|css|png|jpg|jpeg|gif|ico|svg|woff|woff2|ttf|eot|webp|avif))", - "headers": [ - { - "key": "Cache-Control", - "value": "public, max-age=31536000, immutable" - } - ] - }, - { - "source": "/sw.js", - "headers": [ - { - "key": "Cache-Control", - "value": "public, max-age=0, must-revalidate" - } - ] - }, - { - "source": "/manifest.webmanifest", - "headers": [ - { - "key": "Cache-Control", - "value": "public, max-age=0, must-revalidate" - } - ] - }, - { - "source": "/(.*)", - "headers": [ - { - "key": "X-Content-Type-Options", - "value": "nosniff" - }, - { - "key": "X-Frame-Options", - "value": "DENY" - }, - { - "key": "X-XSS-Protection", - "value": "1; mode=block" - }, - { - "key": "Referrer-Policy", - "value": "strict-origin-when-cross-origin" - } - ] - } - ] -}