PronounsPage/composables/useConfig.ts
2025-02-15 14:04:09 +01:00

6 lines
124 B
TypeScript

import type { Config } from '~/locale/config.ts';
export default (): Config => {
return useNuxtApp().$localeConfig;
};