From 3fa7e207d72dab4aef3713ba81d5c73f536a8537 Mon Sep 17 00:00:00 2001 From: v0 Date: Thu, 15 Jan 2026 17:08:48 +0000 Subject: [PATCH] feat: enable static export for Next.js app on Aliyun ESA #VERCEL_SKIP Co-authored-by: Simon <85533298+handsomezhuzhu@users.noreply.github.com> --- next.config.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/next.config.mjs b/next.config.mjs index 5501ef9..35cc886 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,12 +1,12 @@ /** @type {import('next').NextConfig} */ const nextConfig = { + output: 'export', typescript: { ignoreBuildErrors: true, }, images: { unoptimized: true, }, - } -export default nextConfig \ No newline at end of file +export default nextConfig