mirror of
https://github.com/YuzuZensai/Pien-Studio.git
synced 2026-09-02 14:18:35 +00:00
10 lines
223 B
TypeScript
10 lines
223 B
TypeScript
import { getRequestConfig } from "next-intl/server";
|
|
|
|
export default getRequestConfig(async () => {
|
|
const locale = "en";
|
|
return {
|
|
locale,
|
|
messages: (await import(`../messages/${locale}.json`)).default,
|
|
};
|
|
});
|