Reimplement the logsviewer in primevue

This commit is contained in:
Johannes Zellner
2023-07-12 13:21:21 +02:00
parent 0ab72f5900
commit f48b04ca87
7 changed files with 394 additions and 0 deletions
+10
View File
@@ -1,5 +1,6 @@
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
import { resolve } from 'path';
// https://vitejs.dev/config/
export default defineConfig({
@@ -10,4 +11,13 @@ export default defineConfig({
allow: ['..']
},
},
// https://vitejs.dev/guide/build.html#multi-page-app
build: {
rollupOptions: {
input: {
filemanager: resolve(__dirname, 'index.html'),
logs: resolve(__dirname, 'logs.html'),
},
},
},
});