From f26b3b60574172891c2e90cb0964cd5170f0fcb7 Mon Sep 17 00:00:00 2001 From: SivaramPg Date: Tue, 16 Apr 2024 19:25:37 +0530 Subject: [PATCH] Update next.config.mjs to use ES modules and export default --- next.config.mjs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/next.config.mjs b/next.config.mjs index 7ad78ee..6a72b81 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,6 +1,10 @@ -/** @type {import('next').NextConfig} */ +// @ts-check + +/** + * @type {import('next').NextConfig} + */ const nextConfig = { output: "standalone", } -module.exports = nextConfig +export default nextConfig