mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-26 01:36:15 -04:00
12 lines
186 B
TypeScript
12 lines
186 B
TypeScript
export default defineI18nConfig(() => ({
|
|
legacy: false,
|
|
locale: 'en',
|
|
messages: {
|
|
en: {
|
|
welcome: 'Welcome',
|
|
},
|
|
fr: {
|
|
welcome: 'Bienvenue',
|
|
},
|
|
},
|
|
}));
|