mirror of
https://github.com/h44z/wg-portal.git
synced 2025-08-13 08:42:24 +00:00
34 lines
671 B
JavaScript
34 lines
671 B
JavaScript
|
import { createApp } from "vue";
|
||
|
import { createPinia } from "pinia";
|
||
|
|
||
|
import App from "./App.vue";
|
||
|
import router from "./router";
|
||
|
|
||
|
import { createI18n } from "vue-i18n";
|
||
|
import i18n from "./lang";
|
||
|
|
||
|
import Notifications from '@kyvg/vue3-notification'
|
||
|
|
||
|
// Bootstrap (and theme)
|
||
|
//import "bootstrap/dist/css/bootstrap.min.css"
|
||
|
import "bootswatch/dist/lux/bootstrap.min.css";
|
||
|
import "bootstrap";
|
||
|
import "./assets/base.css";
|
||
|
|
||
|
// Fontawesome
|
||
|
import "@fortawesome/fontawesome-free/js/all.js";
|
||
|
|
||
|
// Flags
|
||
|
import "flag-icons/css/flag-icons.min.css"
|
||
|
|
||
|
|
||
|
|
||
|
const app = createApp(App);
|
||
|
|
||
|
app.use(i18n)
|
||
|
app.use(createPinia());
|
||
|
app.use(router);
|
||
|
app.use(Notifications);
|
||
|
|
||
|
app.mount("#app");
|