chore(i18n): setup i18n plugin config

This commit is contained in:
Corentin Thomasset 2023-06-18 14:11:38 +02:00 committed by Corentin THOMASSET
parent a6bbeaebd8
commit ebfb872fae
11 changed files with 256 additions and 5 deletions

View file

@ -11,6 +11,7 @@ import { naive } from './plugins/naive.plugin';
import App from './App.vue';
import router from './router';
import { i18nPlugin } from './plugins/i18n.plugin';
registerSW();
@ -18,6 +19,7 @@ const app = createApp(App);
app.use(createPinia());
app.use(createHead());
app.use(i18nPlugin);
app.use(router);
app.use(naive);
app.use(plausible);