2025-11-24 18:24:36 +07:00
|
|
|
import type { NextConfig } from "next";
|
2025-12-10 16:39:13 +07:00
|
|
|
import createNextIntlPlugin from 'next-intl/plugin';
|
2025-11-24 18:24:36 +07:00
|
|
|
|
|
|
|
|
const nextConfig: NextConfig = {
|
2025-11-25 17:13:16 +07:00
|
|
|
/* output: 'export' */
|
2025-11-24 18:24:36 +07:00
|
|
|
};
|
|
|
|
|
|
2025-12-10 16:39:13 +07:00
|
|
|
const withNextIntl = createNextIntlPlugin();
|
|
|
|
|
export default withNextIntl(nextConfig);
|