You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
893 B
27 lines
893 B
import Register from "./pages/Register.svelte";
|
|
import Payment from "./pages/Payment.svelte";
|
|
import Login from "./pages/Login.svelte";
|
|
import UserProfile from "./pages/UserProfile.svelte";
|
|
import ResetPassword from "./pages/ResetPassword.svelte";
|
|
import Unsubscribe from "./pages/Unsubscribe.svelte";
|
|
import Home from "./pages/Home.svelte";
|
|
import NotFound from "./pages/NotFound.svelte";
|
|
import TOS from "./pages/TOS.svelte";
|
|
import Discord from "./pages/Discord.svelte";
|
|
import Live from "./pages/Live.svelte";
|
|
import LiveIndex from "./pages/LiveIndex.svelte";
|
|
|
|
export default {
|
|
"/register/": Register,
|
|
"/payment/:status?": Payment,
|
|
"/login/": Login,
|
|
"/forgot/": ResetPassword,
|
|
"/profile/": UserProfile,
|
|
"/tos/": TOS,
|
|
"/discord/": Discord,
|
|
"/live/:livestream_id/": Live,
|
|
"/live/": LiveIndex,
|
|
"/email/unsubscribe/:unsubkey/": Unsubscribe,
|
|
"/": Home,
|
|
"*": NotFound,
|
|
}
|
|
|