/** @type {import('next').NextConfig} */ import createNextIntlPlugin from "next-intl/plugin"; const withNextIntl = createNextIntlPlugin(); /** @type {import('next').NextConfig} */ const nextConfig = { output: "standalone", reactStrictMode: true, env: { BUILD_ENV: process.env.BUILD_ENV, }, transpilePackages: ["antd-mobile"], sassOptions: { prependData: `@import "./src/styles/variables.scss";`, }, logging: { fetches: { fullUrl: true, }, }, experimental: { staleTimes: { dynamic: 0, static: 180, }, }, images: { domains: ["9f.com", "bcwin.s3.sa-east-1.amazonaws.com", "192.168.0.237"], remotePatterns: [ { protocol: "https", hostname: "9f.com", pathname: "/img/**", }, { protocol: "https", hostname: "images.hibigwin.com", pathname: "/9f/**", }, { protocol: "https", hostname: "bcwin.s3.sa-east-1.amazonaws.com", pathname: "*", }, ], }, }; export default withNextIntl(nextConfig);