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