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