chore: minor update
This commit is contained in:
parent
ed1f013e44
commit
941d45b75a
4 changed files with 38 additions and 1 deletions
|
@ -9,6 +9,7 @@
|
||||||
"build": "ELEVENTY_PRODUCTION=true eleventy",
|
"build": "ELEVENTY_PRODUCTION=true eleventy",
|
||||||
"update:deps": "npm upgrade && ncu",
|
"update:deps": "npm upgrade && ncu",
|
||||||
"debug": "DEBUG=Eleventy* npx @11ty/eleventy --serve",
|
"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: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: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",
|
"publish:rebuild": "node scripts/worker-build.mjs rebuild && wrangler deploy --env production --config workers/rebuild/wrangler.toml",
|
||||||
|
|
|
@ -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/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">
|
<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="/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">
|
<script type="application/ld+json">
|
||||||
{
|
{
|
||||||
"@context": "https://schema.org",
|
"@context": "https://schema.org",
|
||||||
|
|
24
workers/analytics/index.js
Normal file
24
workers/analytics/index.js
Normal 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)
|
||||||
|
}
|
12
workers/analytics/wrangler.template.toml
Normal file
12
workers/analytics/wrangler.template.toml
Normal 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}" }
|
||||||
|
]
|
Reference in a new issue