next.config.js 169 B

123456789
  1. /** @type {import('next').NextConfig} */
  2. const nextConfig = {
  3. reactStrictMode: true,
  4. experimental: {
  5. outputStandalone: true,
  6. },
  7. }
  8. module.exports = nextConfig