my website at ewancroft.uk
at main 965 B view raw
1{ 2 "$schema": "https://openapi.vercel.sh/vercel.json", 3 "buildCommand": "npm run build", 4 "devCommand": "npm run dev", 5 "installCommand": "npm install", 6 "framework": "sveltekit", 7 "git": { 8 "deploymentEnabled": { 9 "main": true 10 } 11 }, 12 "headers": [ 13 { 14 "source": "/fonts/:path*", 15 "headers": [ 16 { 17 "key": "Cache-Control", 18 "value": "public, max-age=31536000, immutable" 19 } 20 ] 21 }, 22 { 23 "source": "/_app/immutable/:path*", 24 "headers": [ 25 { 26 "key": "Cache-Control", 27 "value": "public, max-age=31536000, immutable" 28 } 29 ] 30 }, 31 { 32 "source": "/favicon.ico", 33 "headers": [ 34 { 35 "key": "Cache-Control", 36 "value": "public, max-age=86400" 37 } 38 ] 39 }, 40 { 41 "source": "/:path*.(jpg|jpeg|png|gif|ico|svg|webp|avif)", 42 "headers": [ 43 { 44 "key": "Cache-Control", 45 "value": "public, max-age=31536000, immutable" 46 } 47 ] 48 } 49 ], 50 "rewrites": [ 51 { 52 "source": "/(.*)", 53 "destination": "/" 54 } 55 ] 56}