Files
next-portfolio/next.config.mjs
2024-03-29 12:52:08 +00:00

9 lines
160 B
JavaScript

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