changed static paths to relative api paths so useable without cors

This commit is contained in:
2025-10-23 14:45:15 +02:00
parent e177c3d2a6
commit e82e584f76
4 changed files with 4 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
// frontend/src/services/authService.ts
import { Employee } from '../models/Employee';
const API_BASE = process.env.REACT_APP_API_BASE_URL || 'http://localhost:3002/api';
const API_BASE = process.env.REACT_APP_API_BASE_URL || '/api';
export interface LoginRequest {
email: string;

View File

@@ -1,7 +1,7 @@
// frontend/src/services/employeeService.ts
import { Employee, CreateEmployeeRequest, UpdateEmployeeRequest, EmployeeAvailability } from '../models/Employee';
const API_BASE_URL = 'http://localhost:3002/api';
const API_BASE_URL = '/api';
const getAuthHeaders = () => {
const token = localStorage.getItem('token');

View File

@@ -4,7 +4,7 @@ import { Employee, EmployeeAvailability } from '../models/Employee';
import { authService } from './authService';
import { AssignmentResult, ScheduleRequest } from '../models/scheduling';
const API_BASE_URL = 'http://localhost:3002/api';
const API_BASE_URL = '/api';