From f0b6e54cc0722352d0bd1ac87e62205fa706bf8b Mon Sep 17 00:00:00 2001 From: mei Date: Sat, 14 Dec 2024 07:14:57 +0800 Subject: [PATCH] fix --- next.config.js | 11 ----------- next.config.mjs | 5 +++++ 2 files changed, 5 insertions(+), 11 deletions(-) delete mode 100644 next.config.js create mode 100644 next.config.mjs diff --git a/next.config.js b/next.config.js deleted file mode 100644 index 624571e..0000000 --- a/next.config.js +++ /dev/null @@ -1,11 +0,0 @@ -/** @type {import('next').NextConfig} */ -const nextConfig = { - images: { - domains: ['api.mmeiblog.cn'], - }, - output: 'standalone', -} - -module.exports = nextConfig - - diff --git a/next.config.mjs b/next.config.mjs new file mode 100644 index 0000000..0a7c9af --- /dev/null +++ b/next.config.mjs @@ -0,0 +1,5 @@ +/** @type {import('next').NextConfig} */ +const nextConfig = { +}; + +export default nextConfig;