From 10e84c4d730a131ba820ebf4ea80c4767917ed1b Mon Sep 17 00:00:00 2001 From: Oleg Proskurin Date: Wed, 1 Oct 2025 23:34:26 +0700 Subject: [PATCH] feat: update nextjs config --- apps/landing/next.config.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/landing/next.config.ts b/apps/landing/next.config.ts index e9ffa30..afcbe7e 100644 --- a/apps/landing/next.config.ts +++ b/apps/landing/next.config.ts @@ -1,7 +1,10 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { - /* config options here */ + output: 'export', + images: { + unoptimized: true, + }, }; export default nextConfig;