Robot-UI/next.config.ts
[Valentino Heman Budiarto] e7654fb4d0 out
2026-08-31 19:12:03 +07:00

12 lines
310 B
TypeScript

import type { NextConfig } from "next";
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;