fix: redirect index page

This commit is contained in:
dsrkafuu 2022-03-13 15:26:26 +08:00
parent 7f9acbb07e
commit a79ac2cdd9
3 changed files with 5 additions and 55 deletions

View File

@ -1,10 +1,9 @@
import index from '../views/index.html';
export async function get() {
return new Response(index, {
return new Response(null, {
status: 301,
headers: {
'Content-Type': 'text/html; charset=utf-8',
'Cache-Control': 'max-age=0, private, must-revalidate',
Location: 'https://github.com/dsrkafuu/moe-counter#readme',
'Cache-Control': 'public, max-age=86400',
},
});
}

View File

@ -1,49 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Moe Counter CF</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/dsr-design@2.5.1/css/colors.css"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/dsr-design@2.5.1/css/reset.css"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?display=swap&family=Inter:wght@400;500"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="https://cdn.jsdelivr.net/gh/dsrkafuu/dsr-assets@3.0.0/favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="https://cdn.jsdelivr.net/gh/dsrkafuu/dsr-assets@3.0.0/favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="https://cdn.jsdelivr.net/gh/dsrkafuu/dsr-assets@3.0.0/favicon/favicon-16x16.png"
/>
<link
rel="shortcut icon"
href="https://cdn.jsdelivr.net/gh/dsrkafuu/dsr-assets@3.0.0/favicon/favicon.ico"
/>
</head>
<body>
<header>HEADER</header>
<main>MAIN</main>
<footer>Copyright &copy; 2022 DSRKafuU</footer>
</body>
</html>

View File

@ -10,6 +10,6 @@ kv_namespaces = [
]
[build]
command = "pnpm run build"
command = "npm run build"
[build.upload]
format = "service-worker"