diff --git a/src/router/index.ts b/src/router/index.ts index b25e0a73..d94a642f 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -16,7 +16,7 @@ const Code:RouteComponent = () => import('@/views/Code/Code.vue'); const QRCode:RouteComponent = () => import('@/views/QRCodes/QRCodes.vue'); const GetHelp:RouteComponent = () => import('@/views/GetHelp/GetHelp.vue'); const Jukebox: RouteComponent = () => import('@/views/Jukebox/Jukebox.vue'); - +const LiveRedirect: RouteComponent = () => import('@/views/Live/Live.vue'); // redirect to shs youtube livestreams type EditScheduleProps = { scheduleToEdit: string; @@ -103,6 +103,11 @@ const routes: Array = [ path: '/jukebox', component: Jukebox, }, + { + name: 'Live', + path: '/live', + component: LiveRedirect, + }, ]; const router = createRouter({ diff --git a/src/views/Live/Live.vue b/src/views/Live/Live.vue new file mode 100644 index 00000000..d30e943c --- /dev/null +++ b/src/views/Live/Live.vue @@ -0,0 +1,7 @@ +