Skip to content
Snippets Groups Projects

HTTP Client and Login

Merged Daniel Göbel requested to merge feat/2-openapi-client into development
2 files
+ 5
11
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -19,7 +19,7 @@ export type OpenAPIConfig = {
};
export const OpenAPI: OpenAPIConfig = {
BASE: 'http://localhost:9999/api',
BASE: import.meta.env.VITE_API_BASE_URL != null ? import.meta.env.VITE_API_BASE_URL : 'http://localhost:9999/api',
VERSION: '1.0.0',
WITH_CREDENTIALS: false,
CREDENTIALS: 'include',
Loading