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
+5
View File
@@ -4,6 +4,8 @@ import PageBoard from '@/PageBoard.vue';
import BootstrapVue3 from 'bootstrap-vue-3'
import { setAxiosXMLHttpRequest } from '@util/setAxiosXMLHttpRequest';
import { auto500px } from "./util/auto500px";
import { insertCustomCSS } from "./util/customCSS";
import { htmlReady } from "./util/htmlReady";
declare const isSecretBoard: boolean;
@@ -12,6 +14,9 @@ declare const isSecretBoard: boolean;
setAxiosXMLHttpRequest();
auto500px();
htmlReady(() => {
insertCustomCSS();
});
createApp(PageBoard, {
isSecretBoard
}).use(BootstrapVue3).mount('#app')