comment keycloak

This commit is contained in:
mattyl006 2022-09-22 13:35:09 +02:00
parent d43701b08f
commit 20da77fa73

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,5 +14,7 @@ const renderApp = () => root.render(
</React.StrictMode>
);
KeyCloakService.initKeycloak(renderApp);
HttpService.configure();
// KeyCloakService.initKeycloak(renderApp);
// HttpService.configure();
renderApp();