import {
  NextConfig
} from 'next'
const nextConfig: NextConfig = {
  reactStrictMode: false,
  skipProxyUrlNormalize: true,
  experimental: {
    webpackMemoryOptimizations: true,
  },
  allowedDevOrigins: [
    '192.168.10.71'
  ]
}

export default nextConfig