mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-08 15:00:37 -04:00
7 lines
200 B
TypeScript
7 lines
200 B
TypeScript
import { getLocale } from '~/server/data.ts';
|
|
import buildLocaleList from '~/src/buildLocaleList.ts';
|
|
|
|
export default defineEventHandler((event) => {
|
|
return buildLocaleList(getLocale(event));
|
|
});
|