mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-27 06:52:35 -04:00

the #shared alias used by Nuxt cannot be easily disabled and to prevent breackage with jiti, we make use of it
7 lines
203 B
TypeScript
7 lines
203 B
TypeScript
import buildLocaleList from '#shared/buildLocaleList.ts';
|
|
import { getLocale } from '~~/server/data.ts';
|
|
|
|
export default defineEventHandler((event) => {
|
|
return buildLocaleList(getLocale(event));
|
|
});
|