t-convex-nextjs-saas/next.config.ts

9 lines
245 B
TypeScript

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