From 6fc113b1e61daf2c79516387823d3b1cc1d8ca7c Mon Sep 17 00:00:00 2001 From: Jojo Ortiz Date: Mon, 13 May 2024 15:37:57 -0700 Subject: [PATCH] add next.config.js --- next.config.js | 9 +++++++++ next.config.mjs | 4 ---- 2 files changed, 9 insertions(+), 4 deletions(-) create mode 100644 next.config.js delete mode 100644 next.config.mjs diff --git a/next.config.js b/next.config.js new file mode 100644 index 0000000..53b4ac0 --- /dev/null +++ b/next.config.js @@ -0,0 +1,9 @@ +/** @type {import('next').NextConfig} */ +const nextConfig = { + output: 'export', + reactStrictMode: true, + images: { unoptimized: true }, +}; + +//prettier-ignore +module.exports = nextConfig diff --git a/next.config.mjs b/next.config.mjs deleted file mode 100644 index 4678774..0000000 --- a/next.config.mjs +++ /dev/null @@ -1,4 +0,0 @@ -/** @type {import('next').NextConfig} */ -const nextConfig = {}; - -export default nextConfig;