Skip to content

Commit

Permalink
chore: upgrade npm dependencies (#12207)
Browse files Browse the repository at this point in the history
  • Loading branch information
naltatis authored Feb 11, 2024
1 parent 50870e6 commit 39bb31a
Show file tree
Hide file tree
Showing 3 changed files with 742 additions and 1,148 deletions.
4 changes: 2 additions & 2 deletions assets/js/app.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import "bootstrap/dist/css/bootstrap.min.css";
import "../css/app.css";
import { createApp, h } from "vue";
import { VueHeadMixin, createHead } from "@unhead/vue"; // not deprecated. see https://github.com/unjs/unhead/issues/291
import { VueHeadMixin, createHead } from "@unhead/vue";
import App from "./views/App.vue";
import setupRouter from "./router";
import setupI18n from "./i18n";
Expand Down Expand Up @@ -66,7 +66,7 @@ app.use(i18n);
app.use(setupRouter(i18n));
app.use(featureflags);
app.use(head);
app.mixin(VueHeadMixin); // not deprecated. see https://github.com/unjs/unhead/issues/291
app.mixin(VueHeadMixin);
window.app = app.mount("#app");

watchThemeChanges();
Loading

0 comments on commit 39bb31a

Please sign in to comment.