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;