← back to Calc 67

next.config.js

14 lines

/** @type {import('next').NextConfig} */
const nextConfig = {
  reactStrictMode: true,
  output: 'export',
  images: {
    unoptimized: true,
  },
  experimental: {
    allowedDevOrigins: ['45.61.58.125:3067'],
  },
}

module.exports = nextConfig