Modernize stack (React 19, Vite, Node 24) and add map preview features

This commit is contained in:
(jenkins)
2026-03-16 19:46:08 +00:00
parent c90fc37d0d
commit abae851315
15 changed files with 8729 additions and 28 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
import axios from 'axios';
const API_BASE_URL = process.env.REACT_APP_API_URL || 'http://localhost:3001/api';
const API_BASE_URL = import.meta.env.VITE_API_URL || 'http://localhost:3001/api';
const api = axios.create({
baseURL: API_BASE_URL,