xinny/src/index.jsx
Ajay Bura 899a89cb3b
Replace Webpack to Vite (#1023)
* Add vite, typescript and prettier

* Configure vite

* Fix tsconfig error

* Fix manifest json

* Move manifest json to root

* Bug fix

* Move back manifest json to public
2022-12-20 20:47:51 +05:30

13 lines
270 B
JavaScript

import React from 'react';
import ReactDom from 'react-dom';
import './font';
import './index.scss';
import settings from './client/state/settings';
import App from './app/pages/App';
settings.applyTheme();
ReactDom.render(<App />, document.getElementById('root'));