rapid interations of server side app and firefox extension

This commit is contained in:
Bryan Van Deusen
2026-01-24 22:52:51 -05:00
commit b9b8048a2d
81 changed files with 9675 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
import { createRouter, createWebHistory } from 'vue-router'
const routes = [
{
path: '/',
name: 'Dashboard',
component: () => import('../views/Dashboard.vue'),
},
{
path: '/subscriptions',
name: 'Subscriptions',
component: () => import('../views/Subscriptions.vue'),
},
// Legacy route redirects
{
path: '/sources',
redirect: '/subscriptions',
},
{
path: '/downloads',
name: 'Downloads',
component: () => import('../views/Downloads.vue'),
},
{
path: '/credentials',
name: 'Credentials',
component: () => import('../views/Credentials.vue'),
},
{
path: '/settings',
name: 'Settings',
component: () => import('../views/Settings.vue'),
},
]
const router = createRouter({
history: createWebHistory(),
routes,
})
export default router