16 lines
454 B
TypeScript
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;
|