misc: auto500px, insertCustomCSS 누락된 페이지 정정

This commit is contained in:
2022-04-26 00:33:54 +09:00
parent 8961abea7f
commit 794eaced98
13 changed files with 59 additions and 8 deletions
+6
View File
@@ -6,9 +6,15 @@ import { createApp } from 'vue'
import PageNationGeneral from '@/PageNationGeneral.vue';
import { BootstrapVue3, BToastPlugin } from 'bootstrap-vue-3';
import { auto500px } from './util/auto500px';
import { htmlReady } from "./util/htmlReady";
import { insertCustomCSS } from "./util/customCSS";
auto500px();
htmlReady(() => {
insertCustomCSS();
});
createApp(PageNationGeneral).use(BootstrapVue3).use(BToastPlugin).mount('#app');