Files
no-copy-frontend/next.config.ts
T

9 lines
240 B
TypeScript

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