Files
lensflix/next.config.ts
2026-06-10 18:30:46 +02:00

16 lines
283 B
TypeScript

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