Skip to content
Snippets Groups Projects
serve.js 490 B
Newer Older
Lukas Jelonek's avatar
Lukas Jelonek committed
import { createApp } from "vue";
import Dev from "./serve.vue";
// To register individual components where they are used (serve.vue) instead of using the
// library as a whole, comment/remove this import and it's corresponding "app.use" call
Lukas Jelonek's avatar
Lukas Jelonek committed
import VueBootstrap5Components from "@/entry.esm";
import "bootstrap";
import "bootstrap/dist/css/bootstrap.css";
import "bootstrap-icons/font/bootstrap-icons.css";

const app = createApp(Dev);
app.use(VueBootstrap5Components);

Lukas Jelonek's avatar
Lukas Jelonek committed
app.mount("#app");