import type { NextConfig } from "next"; import bundleAnalyzer from "@next/bundle-analyzer"; const withBundleAnalyzer = bundleAnalyzer({ enabled: process.env.ANALYZE === "true", }); const nextConfig: NextConfig = { output: "standalone", images: { remotePatterns: [ { protocol: "https", hostname: "casera.treytartt.com", }, ], }, }; export default withBundleAnalyzer(nextConfig);