const createNextIntlPlugin = require('next-intl/plugin'); const withNextIntl = createNextIntlPlugin('./src/i18n/request.ts'); /** @type {import('next').NextConfig} */ const nextConfig = { output: "export", images: { unoptimized: true, }, reactStrictMode: false, env: { APP_ENV: process.env.APP_ENV || "production", NEXT_PUBLIC_DASHBOARD_VERSION: process.env.NEXT_PUBLIC_DASHBOARD_VERSION || "development", }, }; module.exports = withNextIntl(nextConfig);