Merge branch 'dynamic-info-section-list' into main branch for integration of i18n for home page sections

This commit is contained in:
jezzahehn 2025-05-20 18:01:41 -04:00
commit da604a14f6
10 changed files with 194 additions and 79 deletions

View file

@ -5,5 +5,6 @@ import { createRouter, createWebHistory } from "vue-router";
import { routes } from "vue-router/auto-routes";
const router = createRouter({ history: createWebHistory(), routes: routes });
import i18n from './i18n'
createApp(App).use(router).mount("#app");
createApp(App).use(i18n).use(router).mount("#app");