diff --git a/website/client/src/components/static/app.vue b/website/client/src/components/static/app.vue deleted file mode 100644 index 46bbd4d315..0000000000 --- a/website/client/src/components/static/app.vue +++ /dev/null @@ -1,26 +0,0 @@ - diff --git a/website/client/src/router/static-routes.js b/website/client/src/router/static-routes.js index 015ba38d0a..6ff19fc4ee 100644 --- a/website/client/src/router/static-routes.js +++ b/website/client/src/router/static-routes.js @@ -5,7 +5,6 @@ import { NotFoundPage } from './shared-route-imports'; const StaticWrapper = () => import(/* webpackChunkName: "entry" */'@/components/static/staticWrapper'); const HomePage = () => import(/* webpackChunkName: "entry" */'@/components/static/home'); -const AppPage = () => import(/* webpackChunkName: "static" */'@/components/static/app'); const AppleRedirectPage = () => import(/* webpackChunkName: "static" */'@/components/static/appleRedirect'); const ClearBrowserDataPage = () => import(/* webpackChunkName: "static" */'@/components/static/clearBrowserData'); const CommunityGuidelinesPage = () => import(/* webpackChunkName: "static" */'@/components/static/communityGuidelines'); @@ -28,9 +27,6 @@ export const STATIC_ROUTES = { path: '/static', component: StaticWrapper, children: [ - { - name: 'app', path: 'app', component: AppPage, meta: { requiresLogin: false }, - }, { name: 'appleRedirect', path: 'apple-redirect', component: AppleRedirectPage, meta: { requiresLogin: false }, },