Skip to content
Snippets Groups Projects
Commit 411c9b0a authored by Reinder Kraaij's avatar Reinder Kraaij :eye:
Browse files

Resolve TMSS-2810 "Reverse compatibily mode bac to 17"

parent 1ce4b3d0
No related branches found
No related tags found
1 merge request!1170Resolve TMSS-2810 "Reverse compatibily mode bac to 17"
......@@ -6,14 +6,14 @@ sonar.sources=SAS/TMSS/frontend/tmss_webapp/src
# The sonar tag is different per language and coverage report:
# - sonar.javascript.lcov.reportPaths for junit: npm run test:ci (see package.json)
# - sonar.python.coverage.reportPaths=coverage.xml for python: 'python -m coverage run --source="." manage.py test && python -m coverage xml && python -m coverage report'
sonar.javascript.lcov.reportPaths=coverage/lcov.info
sonar.javascript.lcov.reportPaths=build/gnucxx11_opt/SAS/TMSS/frontend/tmss_webapp/coverage/lcov.info
#pipeline fails when the quality gate does not pass the standards
sonar.qualitygate.wait=true
sonar.qualitygate.timeout=1000
sonar.coverage.exclusions=**/*.test.js,**/setupTests.js
# This is the name and version displayed in the SonarCloud UI.
#sonar.projectName=TMSS Frontend
#sonar.projectVersion=1.0
# Encoding of the source code. Default is default system encoding
#sonar.sourceEncoding=UTF-8
\ No newline at end of file
#sonar.sourceEncoding=UTF-8
import 'react-app-polyfill/ie11';
import React from 'react';
import ReactDOM from 'react-dom/client';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
import * as serviceWorker from './serviceWorker';
import 'cleave.js/dist/cleave';
ReactDOM.render(
// <React.StrictMode>
<App />,
// </React.StrictMode>,
document.getElementById('root')
);
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(<App />)
// If you want your app to work offline and load faster, you can change
// unregister() to register() below. Note this comes with some pitfalls.
// Learn more about service workers: https://bit.ly/CRA-PWA
serviceWorker.unregister();
serviceWorker.unregister();
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment