next.config.ts 284 B

12345678910111213141516
  1. import type { NextConfig } from "next";
  2. const nextConfig: NextConfig = {
  3. output: "standalone",
  4. images: {
  5. remotePatterns: [
  6. {
  7. protocol: "https",
  8. hostname: "image.tmdb.org",
  9. pathname: "/t/p/**",
  10. },
  11. ],
  12. },
  13. };
  14. export default nextConfig;