my website at ewancroft.uk
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 77 lines 1.5 kB view raw
1{ 2 "$schema": "https://openapi.vercel.sh/vercel.json", 3 "buildCommand": "pnpm run build", 4 "devCommand": "pnpm run dev", 5 "installCommand": "pnpm 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": "/.well-known/webfinger", 33 "headers": [ 34 { 35 "key": "Content-Type", 36 "value": "application/jrd+json" 37 } 38 ] 39 }, 40 { 41 "source": "/favicon.ico", 42 "headers": [ 43 { 44 "key": "Cache-Control", 45 "value": "public, max-age=86400" 46 } 47 ] 48 }, 49 { 50 "source": "/:path*.(jpg|jpeg|png|gif|ico|svg|webp|avif)", 51 "headers": [ 52 { 53 "key": "Cache-Control", 54 "value": "public, max-age=31536000, immutable" 55 } 56 ] 57 } 58 ], 59 "rewrites": [], 60 "redirects": [ 61 { 62 "source": "/.well-known/nodeinfo", 63 "destination": "https://ap.ewancroft.uk/.well-known/nodeinfo", 64 "permanent": false 65 }, 66 { 67 "source": "/.well-known/host-meta", 68 "destination": "https://ap.ewancroft.uk/.well-known/host-meta", 69 "permanent": false 70 }, 71 { 72 "source": "/nodeinfo/2.0", 73 "destination": "https://ap.ewancroft.uk/nodeinfo/2.0", 74 "permanent": false 75 } 76 ] 77}