Files
webgis/poverty-mapping/src/api/get_client_config.php
T
2026-06-11 17:43:01 +07:00

10 lines
216 B
PHP

<?php
// Return minimal client config (keep API keys out of the browser)
header('Content-Type: application/json; charset=utf-8');
include __DIR__ . '/../config/config.php';
echo json_encode(['api_key'=>null]);
?>