| 12345678910111213141516 |
- import type { NextConfig } from "next";
- const nextConfig: NextConfig = {
- output: "standalone",
- images: {
- remotePatterns: [
- {
- protocol: "https",
- hostname: "image.tmdb.org",
- pathname: "/t/p/**",
- },
- ],
- },
- };
- export default nextConfig;
|