Files
next-portfolio/next.config.mjs

9 lines
161 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
swcMinify: true,
reactStrictMode: true,
output: "standalone",
};
export default nextConfig;