import { withSettleMint } from '@settlemint/sdk-next/config/with-settlemint'; import type { NextConfig } from 'next'; const nextConfig: NextConfig = { pageExtensions: ['js', 'jsx', 'md', 'mdx', 'ts', 'tsx'], reactStrictMode: true, eslint: { ignoreDuringBuilds: true, }, images: { remotePatterns: [], unoptimized: false, formats: ['image/webp'], deviceSizes: [640, 750, 828, 1080, 1200, 1920, 2048, 3840], imageSizes: [16, 32, 48, 64, 96, 128, 256, 384], }, experimental: { inlineCss: true, reactCompiler: true, }, output: 'standalone', }; export default withSettleMint(nextConfig);