This commit is contained in:
2023-03-09 02:20:10 +09:00
parent 4ba9468fae
commit cea00133d2
6 changed files with 255 additions and 3 deletions
+12
View File
@@ -0,0 +1,12 @@
import { createApp } from 'vue'
import { BootstrapVue3, BToastPlugin } from 'bootstrap-vue-3'
import { auto500px } from './util/auto500px';
import { htmlReady } from './util/htmlReady';
import { insertCustomCSS } from './util/customCSS';
import PageFront from './PageFront.vue';
auto500px();
htmlReady(() => {
insertCustomCSS();
});
createApp(PageFront).use(BootstrapVue3).use(BToastPlugin).mount('#app');