turkmen-expo/next.config.mjs

12 lines
279 B
JavaScript

import createNextIntlPlugin from "next-intl/plugin";
const withNextIntl = createNextIntlPlugin("./i18n/request.ts");
/** @type {import('next').NextConfig} */
const nextConfig = {
images: { unoptimized: true },
distDir: "build",
};
export default withNextIntl(nextConfig);