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'), },