Skip to content

Commit

Permalink
Change: Enable vendor prefixes
Browse files Browse the repository at this point in the history
  • Loading branch information
a-h-abdelsalam authored and timopollmeier committed Oct 5, 2023
1 parent 6f8eaf8 commit cf5de3d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ import {isDefined} from 'gmp/utils/identity';

import App from './web/app.js';

import {StyleSheetManager} from 'styled-components';

const config = isDefined(global.config) ? global.config : {};
const {sentryDSN, sentryEnvironment} = config;

Expand All @@ -38,6 +40,11 @@ Sentry.init({
release: GSA_VERSION,
});

ReactDOM.render(<App />, document.getElementById('app'));
ReactDOM.render(
<StyleSheetManager enableVendorPrefixes>
<App />
</StyleSheetManager>,
document.getElementById('app'),
);

// vim: set ts=2 sw=2 tw=80:

0 comments on commit cf5de3d

Please sign in to comment.