Python 68.8%
TypeScript 18.6%
CSS 8.7%
JavaScript 3.3%
HTML 0.6%
1// -----------------------------------------------------------------------------2// Author: Simon-Pierre Boucher3// Contact: contact@spboucher.ai4// Project: Groupe Ka / Ka Maps (Rent-Ka integration)5// kamaps/config.ts: Rent-Ka Maps Mapbox configuration.6// The token is a PUBLIC Mapbox token (pk.…) — designed to be exposed7// client-side; overridable at build time via VITE_MAPBOX_TOKEN. URL8// restrictions are managed in the Mapbox dashboard.9// -----------------------------------------------------------------------------1011export const MAPBOX_TOKEN: string =12 (import.meta.env.VITE_MAPBOX_TOKEN as string | undefined) ??13 "pk.eyJ1Ijoic3Bib3VjaGVyIiwiYSI6ImNtc3Fyb3k4djAwOTgyenB3dWt6NHBjc2kifQ.poqLf0ADy3lIh28O-pFI2Q";14