Files
places/next.config.ts
2026-05-20 18:08:37 +07:00

16 lines
454 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
// Produces .next/standalone with a minimal Node server bundle — the Docker
// image stays small (no node_modules, no source code copied at runtime).
output: "standalone",
images: {
remotePatterns: [
{ protocol: "https", hostname: "images.unsplash.com" },
{ protocol: "https", hostname: "cdn.renolation.com" },
],
},
};
export default nextConfig;