# Base URL of the SlpModularCms .NET API. # The backend must be running with CORS configured to allow this origin # and to send the httpOnly refresh-token cookie (credentials: include). # Set CookieSameSite=None in appsettings.Development.json so the cookie # is sent cross-origin when the frontend and backend run on different ports. VITE_API_BASE_URL=https://localhost:7221 # Browser tab title. Defaults to "SlpModularCms" if unset — override so the # tab is instantly recognizable when running multiple instances side by side # (e.g. local master vs. slave, see below). VITE_APP_TITLE=SlpModularCms # --- Local master/slave dev setup --- # To point the frontend at the slave instance (SlpModularCms.Api.Slave, # see root README.md "Lokaal Master + Slave Draaien (Dev)") instead of the # master, copy this file to `.env.slave.local` with: # VITE_API_BASE_URL=https://localhost:7222 # VITE_APP_TITLE=SlpModularCms (Slave) # and run `pnpm dev:slave` (uses --mode slave, port 5174) instead of `pnpm dev`.