From 8efcb73cc1fac117dceb664c6781abe0e8f6ab00 Mon Sep 17 00:00:00 2001 From: Neo Date: Thu, 19 Feb 2026 05:42:26 +0000 Subject: [PATCH] Fix: rename next.config.ts to next.config.mjs for Next.js compatibility --- next.config.mjs | 5 +++++ next.config.ts | 7 ------- 2 files changed, 5 insertions(+), 7 deletions(-) create mode 100644 next.config.mjs delete mode 100644 next.config.ts diff --git a/next.config.mjs b/next.config.mjs new file mode 100644 index 0000000..119e91d --- /dev/null +++ b/next.config.mjs @@ -0,0 +1,5 @@ +const nextConfig = { + output: 'standalone', +}; + +export default nextConfig; diff --git a/next.config.ts b/next.config.ts deleted file mode 100644 index 225e495..0000000 --- a/next.config.ts +++ /dev/null @@ -1,7 +0,0 @@ -import type { NextConfig } from "next"; - -const nextConfig: NextConfig = { - output: 'standalone', -}; - -export default nextConfig;