2022-04-22 09:49:26 -04:00
|
|
|
import '../../marketing'
|
|
|
|
import './../../utils/meta'
|
|
|
|
import './../../utils/webpack-public-path'
|
|
|
|
import './../../infrastructure/error-reporter'
|
|
|
|
import './../../i18n'
|
|
|
|
import '../../features/settings/components/root'
|
|
|
|
import ReactDOM from 'react-dom'
|
|
|
|
import SettingsPageRoot from '../../features/settings/components/root.tsx'
|
|
|
|
|
|
|
|
const element = document.getElementById('settings-page-root')
|
2023-06-26 04:32:49 -04:00
|
|
|
// For react-google-recaptcha
|
|
|
|
window.recaptchaOptions = {
|
|
|
|
enterprise: true,
|
|
|
|
}
|
2022-04-22 09:49:26 -04:00
|
|
|
if (element) {
|
|
|
|
ReactDOM.render(<SettingsPageRoot />, element)
|
|
|
|
}
|