From 543d48cd0427e9c335f6b52eccd62ff0c9149275 Mon Sep 17 00:00:00 2001 From: Yun Chan Date: Fri, 26 Jun 2026 15:11:54 +0900 Subject: [PATCH] Block legacy Live2D asset routes --- apps/web/functions/live2d/[[path]].js | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 apps/web/functions/live2d/[[path]].js diff --git a/apps/web/functions/live2d/[[path]].js b/apps/web/functions/live2d/[[path]].js new file mode 100644 index 0000000..dddda7f --- /dev/null +++ b/apps/web/functions/live2d/[[path]].js @@ -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", + }, + }); +}