From e7654fb4d046c2f916830b153a39ac0073b05cc2 Mon Sep 17 00:00:00 2001 From: "[Valentino Heman Budiarto]" <[hemanvalentino@gmail.com]> Date: Mon, 31 Aug 2026 19:12:03 +0700 Subject: [PATCH] out --- next.config.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/next.config.ts b/next.config.ts index e9ffa30..27b9f2b 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,7 +1,11 @@ import type { NextConfig } from "next"; -const nextConfig: NextConfig = { - /* config options here */ +const nextConfig = { + output: 'export', // <-- Ini yang mengubah web menjadi HTML statis + images: { + unoptimized: true, // <-- Wajib ditambahkan agar gambar tidak error saat diexport + }, + // ... (biarkan konfigurasi lain jika ada) }; export default nextConfig;