fix submodules option and remove privacy page
All checks were successful
Build and publish the docker image / build (push) Successful in 1m15s

Signed-off-by: ngn <ngn@ngn.tf>
This commit is contained in:
ngn
2025-01-21 10:29:06 +03:00
parent ad7a8bb439
commit fd255fdeb9
3 changed files with 2 additions and 40 deletions

View File

@ -1,7 +1,6 @@
import { createRouter, createWebHistory } from 'vue-router'
const UserView = () => import('../views/UserView.vue')
const PageNotFound = () => import('../views/PageNotFound.vue')
const PrivacyPageView = () => import('../views/PrivacyPageView.vue')
const HomepageView = () => import('../views/HomepageView.vue')
const CategoryView = () => import('../views/CategoryView.vue')
const SearchPageView = () => import('../views/SearchPageView.vue')
@ -34,11 +33,6 @@ const router = createRouter({
path: '/directory/category/:game',
component: CategoryView
},
{
path: '/privacy',
name: 'about',
component: PrivacyPageView
},
{
path: '/following',
component: FollowingView