2025-12-18 18:32:35 +08:00

11 lines
265 B
TypeScript

import type { NextConfig } from "next";
import createNextIntlPlugin from 'next-intl/plugin';
const withNextIntl = createNextIntlPlugin('./i18n/request.ts');
const nextConfig: NextConfig = {
/* config options here */
};
export default withNextIntl(nextConfig);