Fix stylesheet loading order
This commit is contained in:
@@ -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 },
|
||||
|
||||
Reference in New Issue
Block a user