From 8b132905f8f1e31918f9e5e40a16c39164a0d514 Mon Sep 17 00:00:00 2001 From: fadilkun45 Date: Mon, 15 Jun 2026 16:16:32 +0700 Subject: [PATCH] feat: prepare for standalone --- next.config.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/next.config.ts b/next.config.ts index e9ffa30..6297b59 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,7 +1,13 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { + output: "standalone", + images: { unoptimized: true }, + typescript: { + ignoreBuildErrors: true, + }, /* config options here */ + }; export default nextConfig;