This commit initializes both the Nuxt frontend and the Rust backend of the new version of phundrak.com
16 lines
230 B
TypeScript
16 lines
230 B
TypeScript
export default defineI18nConfig(() => ({
|
|
legacy: false,
|
|
locale: 'en',
|
|
messages: {
|
|
en: {
|
|
welcome: 'Welcome',
|
|
},
|
|
fr: {
|
|
welcome: 'Bienvenue',
|
|
},
|
|
lfn: {
|
|
welcome: 'Bonveni',
|
|
},
|
|
},
|
|
}));
|