Skip to content

Commit a9db3f1

Browse files
committed
feat: redirect /favicon.ico to viteplus.dev/favicon.svg
1 parent 524bc58 commit a9db3f1

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

routes/favicon.ico.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import { defineHandler } from "void";
2+
3+
export const GET = defineHandler((c) => {
4+
return c.redirect("https://viteplus.dev/favicon.svg", 301);
5+
});

0 commit comments

Comments
 (0)