turn off keycloak

This commit is contained in:
mattyl006 2022-10-05 17:50:10 +02:00
parent e82e62da23
commit 517413936c

View File

@ -3,8 +3,8 @@ import ReactDOM from 'react-dom/client';
import './index.css';
import './normalize.css';
import App from './App';
import KeyCloakService from './services/KeyCloakService';
import HttpService from './services/HttpService';
// import KeyCloakService from './services/KeyCloakService';
// import HttpService from './services/HttpService';
const root = ReactDOM.createRoot(document.getElementById('root'));
@ -14,7 +14,7 @@ const renderApp = () => root.render(
</React.StrictMode>
);
KeyCloakService.initKeycloak(renderApp);
HttpService.configure();
// KeyCloakService.initKeycloak(renderApp);
// HttpService.configure();
renderApp();