aaronjy-me/next.config.mjs
2025-05-02 18:13:07 +01:00

10 lines
178 B
JavaScript

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