Move logs.html from frontend to dashboard

This commit is contained in:
Johannes Zellner
2024-10-04 20:47:49 +02:00
parent 2300e1baee
commit bc4e6ab1de
13 changed files with 558 additions and 19 deletions

View File

@@ -1,8 +1,16 @@
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
import { resolve } from 'path';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
server: {
fs: {
// Allow serving files from one level up to the project root for monaco editor assets
allow: [ '../..' ]
},
},
// https://vitejs.dev/guide/build.html#multi-page-app
build: {
rollupOptions: {
@@ -11,6 +19,7 @@ export default defineConfig({
appstatus: resolve('appstatus.html'),
authcallback: resolve('authcallback.html'),
index: resolve('index.html'),
logs: resolve('logs.html'),
notfound: resolve('notfound.html'),
passwordreset: resolve('passwordreset.html'),
restore: resolve('restore.html'),