Javascript – Can we no longer export static pages in nextjs 14?
I'm trying to export my project to static HTML pages and I don't get the CSS styles My configuration in next.config.js ** @type {import('next').NextConfig} */ const nextConfig = { images: { unoptimized: true, }, output: "export", reactStrictMode: false, }; module.exports…