diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index c8cbaae..45822c8 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -14,6 +14,8 @@ jobs: steps: - name: Checkout repository uses: "https://github.com/actions/checkout@v4" + with: + submodules: true - name: Login to container repo uses: "https://github.com/docker/login-action@v1" @@ -21,7 +23,6 @@ jobs: registry: ${{env.REGISTRY}} username: ${{gitea.actor}} password: ${{secrets.PACKAGES_TOKEN}} - submodules: true - name: Build image run: | diff --git a/src/router/index.ts b/src/router/index.ts index 886e75e..bc113de 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -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 diff --git a/src/views/PrivacyPageView.vue b/src/views/PrivacyPageView.vue deleted file mode 100644 index bee17a2..0000000 --- a/src/views/PrivacyPageView.vue +++ /dev/null @@ -1,33 +0,0 @@ - - -