diff --git a/src/index.jsx b/src/index.jsx index ac38668..7630ef8 100755 --- a/src/index.jsx +++ b/src/index.jsx @@ -15,7 +15,9 @@ import App from './components/App'; if (apiClient.ensurePublicOrAuthencationAndCookies(window.location.pathname)) { const { store, history } = configureStore(); - handleRtl(); + if (process.env.NODE_ENV === 'production') { + handleRtl(); + } ReactDOM.render(, document.getElementById('root'));