Skip to content

error

Error: Image Optimization using Next.js default loader is not compatible with next export. Possible solutions: 0:00:00 AM: - Use next start, which starts the Image Optimization API. 0:00:00 AM: - Use Vercel to deploy, which supports Image Optimization. 0:00:00 AM: - Configure a third-party loader in next.config.js. 0:00:00 AM: - Read more: https://err.sh/next.js/export-image-api. 0:00:00 AM: at exportApp (/node_modules/next/dist/export/index.js:14:712)

tsx
const nextConfig = {
  images: {
    unoptimized: true,
  },
};

export default nextConfig;