From d6e92cfdc82569b8424b0563005abbf7c91c8876 Mon Sep 17 00:00:00 2001 From: Satyam Date: Wed, 13 Mar 2024 21:05:05 +0530 Subject: [PATCH] config: add next static configuration for static build --- next.config.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/next.config.js b/next.config.js index 658404a..d2a2ec8 100644 --- a/next.config.js +++ b/next.config.js @@ -1,4 +1,9 @@ /** @type {import('next').NextConfig} */ -const nextConfig = {}; +const nextConfig = { + output: "export", + images: { + unoptimized: true, + }, +}; module.exports = nextConfig;