import type { NextConfig } from "next"; const nextConfig: NextConfig = { reactStrictMode: true, typescript: { ignoreBuildErrors: false, }, images: { remotePatterns: [ { protocol: "https", hostname: "picsum.photos", port: "", pathname: "/**", }, ], }, output: "standalone", transpilePackages: ["motion"], }; export default nextConfig;