Files
byhaider-homepage/next.config.ts
T

9 lines
244 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);