next.config.ts 358 B

123456789101112131415161718
  1. import type { NextConfig } from "next";
  2. const nextConfig: NextConfig = {
  3. // Enable standalone output for optimized Docker images
  4. // Produces .next/standalone with a minimal server.js
  5. output: "standalone",
  6. images: {
  7. remotePatterns: [
  8. {
  9. protocol: "https",
  10. hostname: "**",
  11. },
  12. ],
  13. },
  14. };
  15. export default nextConfig;