2026-02-11 20:45:37 +00:00
|
|
|
import createNextIntlPlugin from "next-intl/plugin";
|
|
|
|
|
|
|
|
|
|
const withNextIntl = createNextIntlPlugin("./i18n/request.ts");
|
|
|
|
|
|
2025-10-12 17:42:17 +00:00
|
|
|
/** @type {import('next').NextConfig} */
|
|
|
|
|
const nextConfig = {
|
|
|
|
|
images: { unoptimized: true },
|
|
|
|
|
distDir: "build",
|
|
|
|
|
};
|
|
|
|
|
|
2026-02-11 20:45:37 +00:00
|
|
|
export default withNextIntl(nextConfig);
|