Block legacy Live2D asset routes

This commit is contained in:
Yun Chan 2026-06-26 15:11:54 +09:00
parent 435cbafbc5
commit 543d48cd04

View file

@ -0,0 +1,10 @@
export function onRequest() {
return new Response("Live2D demo assets are not part of this deployment.", {
status: 404,
headers: {
"cache-control": "no-store",
"content-type": "text/plain; charset=utf-8",
"x-robots-tag": "noindex",
},
});
}