From 8050d67b18809d8655a8c78c7d2ac37822e813e0 Mon Sep 17 00:00:00 2001 From: mstfyldz Date: Wed, 3 Jun 2026 17:29:50 +0300 Subject: [PATCH] chore: enable standalone output for docker --- next.config.ts | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/next.config.ts b/next.config.ts index e9ffa30..4ff14d0 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,7 +1,15 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { - /* config options here */ + output: "standalone", + images: { + remotePatterns: [ + { + protocol: "https", + hostname: "images.unsplash.com", + }, + ], + }, }; export default nextConfig;