Fix stylesheet loading order

This commit is contained in:
Johannes Zellner
2025-03-19 17:13:58 +01:00
parent d45c2eb5b6
commit 2ed9d68c08
9 changed files with 10 additions and 18 deletions
+2 -2
View File
@@ -1,7 +1,5 @@
import { createApp } from 'vue';
import './style.css';
import '@fontsource/noto-sans';
import { createRouter, createWebHashHistory } from 'vue-router';
@@ -11,6 +9,8 @@ import FileManager from './components/FileManager.vue';
import FolderView from './components/FolderView.vue';
import FileViewer from './components/FileViewer.vue';
import './style.css';
const routes = [
{ path: '/', redirect: '/home' },
{ path: '/home/:type?/:resourceId?/:cwd*', component: FolderView },