mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-07-01 16:50:12 +08:00
8 lines
208 B
TypeScript
8 lines
208 B
TypeScript
import { serverSideTranslations } from "next-i18next/serverSideTranslations";
|
|
|
|
export const getDefaultStaticProps = async ({ locale }) => ({
|
|
props: {
|
|
...(await serverSideTranslations(locale)),
|
|
},
|
|
});
|