fix
This commit is contained in:
parent
22624803b2
commit
425cea683b
|
|
@ -121,8 +121,11 @@ export const _ = {
|
||||||
} catch (e: any) {
|
} catch (e: any) {
|
||||||
return new Response(
|
return new Response(
|
||||||
`
|
`
|
||||||
console.error("Failed to load index.js")
|
console.error("Failed to load index.js")
|
||||||
console.error("${e.message}")
|
console.error("${e.message}");
|
||||||
|
setTimeout(() =>{
|
||||||
|
location.reload();
|
||||||
|
}, 1500);
|
||||||
`,
|
`,
|
||||||
{
|
{
|
||||||
headers: { "content-type": "application/javascript" },
|
headers: { "content-type": "application/javascript" },
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue