10 lines
275 B
JavaScript
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",
|
|
},
|
|
});
|
|
}
|