chore: minor update

This commit is contained in:
Cory Dransfeldt 2024-08-12 12:24:50 -07:00
parent ed1f013e44
commit 941d45b75a
No known key found for this signature in database
4 changed files with 38 additions and 1 deletions

View file

@ -9,6 +9,7 @@
"build": "ELEVENTY_PRODUCTION=true eleventy",
"update:deps": "npm upgrade && ncu",
"debug": "DEBUG=Eleventy* npx @11ty/eleventy --serve",
"publish:analytics": "node scripts/worker-build.mjs analytics && wrangler deploy --env production --config workers/analytics/wrangler.toml",
"publish:contact": "node scripts/worker-build.mjs contact && wrangler deploy --env production --config workers/contact/wrangler.toml",
"publish:playing": "node scripts/worker-build.mjs playing && wrangler deploy --env production --config workers/playing/wrangler.toml",
"publish:rebuild": "node scripts/worker-build.mjs rebuild && wrangler deploy --env production --config workers/rebuild/wrangler.toml",

View file

@ -108,7 +108,7 @@
<link rel="alternate" href="https://coryd.dev/feeds/books" title="Books / {{ globals.site_name }}" type="application/rss+xml">
<link rel="alternate" href="https://coryd.dev/feeds/all" title="All activity / {{ globals.site_name }}" type="application/rss+xml">
<script defer src="/assets/scripts/index.js?v={% appVersion %}"></script>
<script defer src="https://dashboard.coryd.dev/script.js" data-website-id="f405b664-258b-4d77-bd42-94ccf6b294f5"></script>
<script defer src="/js/script.js?v={% appVersion %}" data-website-id="f405b664-258b-4d77-bd42-94ccf6b294f5"></script>
<script type="application/ld+json">
{
"@context": "https://schema.org",

View file

@ -0,0 +1,24 @@
addEventListener('fetch', event => {
event.respondWith(handleRequest(event.request))
})
async function handleRequest(request) {
const url = new URL(request.url)
if (url.pathname === '/js/script.js') {
const targetUrl = 'https://dashboard.coryd.dev/script.js'
const response = await fetch(targetUrl, {
method: request.method,
headers: request.headers
})
const newHeaders = new Headers(response.headers)
newHeaders.set('Cache-Control', 'max-age=2592000')
return new Response(response.body, {
status: response.status,
statusText: response.statusText,
headers: newHeaders
})
}
return fetch(request)
}

View file

@ -0,0 +1,12 @@
name = "analytics-worker"
main = "./index.js"
compatibility_date = "2023-01-01"
account_id = "${CF_ACCOUNT_ID}"
workers_dev = true
[env.production]
name = "analytics-worker-production"
routes = [
{ pattern = "coryd.dev/js/script.js", zone_id = "${CF_ZONE_ID}" }
]