Get api endpoint from config, not from user input.

This commit is contained in:
2025-11-24 18:34:35 +01:00
parent 3595e0049e
commit 94955a0a42
3 changed files with 8 additions and 10 deletions

View File

@@ -19,6 +19,9 @@ if (!defined('APP_NAME')) {
if (!defined('YEAR')) {
define('YEAR', '2025/26');
}
if (!defined('API_URL')) {
define('API_URL', 'http://localhost:3006/classe');
}
if (!defined('DEV_MODE')) {
define('DEV_MODE', false); // Modalita' di sviluppo
}