Deat Dockerfiles y Fix Base_URL

This commit is contained in:
2025-10-07 15:18:11 -03:00
parent 04f1134be4
commit be7b6a732d
13 changed files with 135 additions and 8 deletions

View File

@@ -7,7 +7,7 @@ interface Props {
onSave: (usuario: { username: string }) => void;
}
const BASE_URL = 'http://localhost:5198/api';
const BASE_URL = '/api';
const ModalAnadirUsuario: React.FC<Props> = ({ onClose, onSave }) => {
const [username, setUsername] = useState('');