mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-08-04 04:55:18 +02:00
13 lines
186 B
TypeScript
13 lines
186 B
TypeScript
|
export default defineI18nConfig(() => ({
|
||
|
legacy: false,
|
||
|
locale: 'en',
|
||
|
messages: {
|
||
|
en: {
|
||
|
welcome: 'Welcome',
|
||
|
},
|
||
|
fr: {
|
||
|
welcome: 'Bienvenue',
|
||
|
},
|
||
|
},
|
||
|
}));
|