Inline frontend instead of submodule

This commit is contained in:
dan
2025-12-06 17:34:40 +03:00
parent 2d265bb71d
commit c4af8465aa
36 changed files with 34880 additions and 4 deletions

21
frontend/src/router.js Normal file
View File

@@ -0,0 +1,21 @@
import Vue from 'vue';
import Router from 'vue-router';
import ContentStream from './views/ContentStream';
import Sidebar from './components/Sidebar';
Vue.use(Router);
export default new Router({
routes: [
{
path: '/:servicePort?/:streamId?',
name: 'stream',
props: true,
components: {
sidebar: Sidebar,
content: ContentStream,
},
},
],
linkActiveClass: 'active',
});