1
0
mirror of https://github.com/axllent/mailpit.git synced 2025-01-18 03:22:06 +02:00

8 lines
215 B
JavaScript
Raw Normal View History

2022-07-29 23:23:08 +12:00
import { createApp } from 'vue';
import App from './App.vue';
import "./assets/styles.scss";
import "../../node_modules/bootstrap-icons/font/bootstrap-icons.scss";
import "bootstrap";
2022-10-16 11:51:20 +13:00
createApp(App).mount('#app');