App: Use /racepicks as default page (reroute / + change Formula11 button destination)
This commit is contained in:
10
src/hooks.ts
Normal file
10
src/hooks.ts
Normal file
@ -0,0 +1,10 @@
|
||||
import type { Reroute } from "@sveltejs/kit";
|
||||
|
||||
const rerouted: Record<string, string> = {};
|
||||
|
||||
// NOTE: This does not change the browser's address bar (the route path)!
|
||||
export const reroute: Reroute = ({ url }) => {
|
||||
if (url.pathname in rerouted) {
|
||||
return rerouted[url.pathname];
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user