Configuration

Node & Gateway Configuration

Environment variables, caching headers, and translation proxy configuration options.

Last Synchronized: 2026-09-22β€’Verified: Next.js 16 + React 19

Environment Variables

Create a .env.local file in your project root:

.env.local
env
# MultiLipi Edge Proxy Settings
MULTILIPI_PROXY_KEY=ml_live_9928374a81b9
NEXT_PUBLIC_DEFAULT_LOCALE=en
NEXT_PUBLIC_SUPPORTED_LOCALES=en,hi,fr,de,nl,es,ja

# Platform Metadata & Canonical
NEXT_PUBLIC_SITE_URL=https://vishal.doctunes.io

# Analytics & Zero-Trust Telemetry
NEXT_PUBLIC_ANALYTICS_ENABLED=true

Next.js Configuration Matrix

In your next.config.ts, configure image domains and react strict mode:

next.config.ts
typescript
import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  reactStrictMode: true,
  images: {
    domains: ["images.unsplash.com"],
  },
};

export default nextConfig;