Block legacy Live2D asset routes
This commit is contained in:
parent
435cbafbc5
commit
543d48cd04
1 changed files with 10 additions and 0 deletions
10
apps/web/functions/live2d/[[path]].js
Normal file
10
apps/web/functions/live2d/[[path]].js
Normal 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",
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue