20 lines
369 B
JavaScript
20 lines
369 B
JavaScript
import { createApp } from 'vue';
|
|
|
|
import '@fontsource/inter';
|
|
|
|
import { tooltip } from '@cloudron/pankow';
|
|
import i18n from './i18n.js';
|
|
import LogsViewer from './components/LogsViewer.vue';
|
|
|
|
import './style.css';
|
|
|
|
(async function init() {
|
|
const app = createApp(LogsViewer);
|
|
|
|
app.directive('tooltip', tooltip);
|
|
|
|
app.use(await i18n());
|
|
|
|
app.mount('#app');
|
|
})();
|