vignette/apps/web/functions/live2d/[[path]].js
2026-06-26 15:11:54 +09:00

10 lines
275 B
JavaScript

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",
},
});
}