mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-08-05 13:35:23 +02:00
10 lines
256 B
TypeScript
10 lines
256 B
TypeScript
|
// File was already correctly named
|
||
|
export default defineI18nLocale(async () => {
|
||
|
const { en: $vuetify } = await import("vuetify/locale");
|
||
|
const { default: enUS } = await import("../messages/en-US.json");
|
||
|
return {
|
||
|
...enUS,
|
||
|
$vuetify,
|
||
|
};
|
||
|
});
|