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

9 lines
217 B
TypeScript
Raw Normal View History

2026-01-15 17:13:57 +07:00
import type { NextConfig } from "next";
2026-01-16 15:52:59 +07:00
import createNextIntlPlugin from 'next-intl/plugin';
2026-01-15 17:13:57 +07:00
const nextConfig: NextConfig = {
2026-01-16 15:52:59 +07:00
2026-01-15 17:13:57 +07:00
};
2026-01-16 15:52:59 +07:00
const withNextIntl = createNextIntlPlugin();
export default withNextIntl(nextConfig);