I am having trouble deploying my basic nextjs static site. I keep getting the error: “The “next export” command has been removed in favor of “output: export” in next.config.js. Learn more: Deploying: Static Exports | Next.js” even when my next.config.js looks like this:
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
};
module.exports = nextConfig;
I am just running a basic unedited version of the create-next-app on NODE_VERSION 18.17.0 and I don’t know what els can be the issue here.Preformatted text