From b09174466570496c59f246778d00f38d1748014c Mon Sep 17 00:00:00 2001 From: Leo Vasanko Date: Thu, 4 Dec 2025 10:06:54 +0000 Subject: [PATCH] Cleanup old hostapp files (finished, working). --- frontend/int/host/HostApp.vue | 137 ---------------------------------- frontend/int/host/index.html | 12 --- frontend/int/host/main.js | 11 --- frontend/vite.config.js | 2 - 4 files changed, 162 deletions(-) delete mode 100644 frontend/int/host/HostApp.vue delete mode 100644 frontend/int/host/index.html delete mode 100644 frontend/int/host/main.js diff --git a/frontend/int/host/HostApp.vue b/frontend/int/host/HostApp.vue deleted file mode 100644 index ce43d59..0000000 --- a/frontend/int/host/HostApp.vue +++ /dev/null @@ -1,137 +0,0 @@ - - - - - diff --git a/frontend/int/host/index.html b/frontend/int/host/index.html deleted file mode 100644 index f739627..0000000 --- a/frontend/int/host/index.html +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - Account Summary - - -
- - - diff --git a/frontend/int/host/main.js b/frontend/int/host/main.js deleted file mode 100644 index df154cc..0000000 --- a/frontend/int/host/main.js +++ /dev/null @@ -1,11 +0,0 @@ -import '@/assets/style.css' - -import { createApp } from 'vue' -import { createPinia } from 'pinia' -import HostApp from './HostApp.vue' - -const app = createApp(HostApp) - -app.use(createPinia()) - -app.mount('#app') diff --git a/frontend/vite.config.js b/frontend/vite.config.js index 9de7268..f6a3c4e 100644 --- a/frontend/vite.config.js +++ b/frontend/vite.config.js @@ -32,7 +32,6 @@ export default defineConfig(({ command }) => ({ { from: 'auth.html', to: 'auth/index.html' }, { from: 'admin.html', to: 'admin/index.html' }, { from: 'restricted.html', to: 'restricted/index.html' }, - { from: 'host.html', to: 'host/index.html' }, { from: 'reset.html', to: 'reset/index.html' }, { from: 'forward.html', to: 'forward/index.html' } ] @@ -77,7 +76,6 @@ export default defineConfig(({ command }) => ({ auth: resolve(__dirname, 'auth/index.html'), admin: resolve(__dirname, 'auth/admin/index.html'), restricted: resolve(__dirname, 'auth/restricted/index.html'), - host: resolve(__dirname, 'int/host/index.html'), reset: resolve(__dirname, 'int/reset/index.html'), forward: resolve(__dirname, 'int/forward/index.html'), },