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

16
dashboard/src/logs.js Normal file
View File

@@ -0,0 +1,16 @@
import { createApp } from 'vue';
import './style.css';
import '@fontsource/noto-sans';
import i18n from './i18n.js';
import LogsViewer from './components/LogsViewer.vue';
(async function init() {
const app = createApp(LogsViewer);
app.use(await i18n());
app.mount('#app');
})();