import { createRouter, createWebHistory } from 'vue-router' import HomeView from '../views/HomeView.vue' import DigiSnaxxView from '../views/DigiSnaxxView.vue' // import LiveView from '../views/zarchive/LiveView.vue' import BlueskyView from '../views/BlueskyView.vue' const router = createRouter({ history: createWebHistory(import.meta.env.BASE_URL), routes: [ { path: '/', name: 'home', component: HomeView }, { path: '/beyond', name: '000', component: DigiSnaxxView }, { path: '/boston', name: 'bos', component: DigiSnaxxView }, { path: '/chicago', name: 'chi', component: DigiSnaxxView }, { path: '/houston', name: 'hou', component: DigiSnaxxView }, { path: '/medellin', name: 'mde', component: DigiSnaxxView }, { path: '/mpls-stp', name: 'msp', component: DigiSnaxxView }, { path: '/philly', name: 'phl', component: DigiSnaxxView }, { path: '/portland', name: 'pdx', component: DigiSnaxxView }, { path: '/stlouis', name: 'stl', component: DigiSnaxxView }, // { // path: '/live', // name: 'live', // component: LiveView // }, // { // path: '/media', // name: 'bluesky', // component: BlueskyView // }, ] }) export default router