next.config.mjs 165 B

1234567
  1. /** @type {import('next').NextConfig} */
  2. const nextConfig = {
  3. allowedDevOrigins: ["127.0.0.1", "localhost"],
  4. devIndicators: false
  5. };
  6. export default nextConfig;