aaronjy-me/next.config.mjs
2025-05-04 15:22:06 +01:00

10 lines
182 B
JavaScript

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