import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  reactStrictMode: true,
  images: {
    // Client supplied factory photography is dropped into /public/media and served
    // locally, so no remote patterns are needed. Formats keep large mill photos light.
    formats: ["image/avif", "image/webp"],
  },
  // three ships untranspiled ESM addons that drei pulls in.
  transpilePackages: ["three"],
};

export default nextConfig;
