1
0
mirror of https://github.com/chinchang/web-maker.git synced 2025-07-15 19:16:18 +02:00

Remove stylesheets from html and include in js

The stylesheets that were linked in the index.html were redundant, as
they were already bundled by the webpack. The style.css was again imported in
the components/app.jsx. Now, it is placed in the index.js in a
order that style.css overrides the other stylesheets.
This commit is contained in:
Arnab Sen
2022-03-11 20:05:28 +05:30
parent 43db944c0d
commit c62592bf57
3 changed files with 1 additions and 14 deletions

View File

@ -6,5 +6,6 @@ import './lib/codemirror/addon/fold/foldgutter.css';
import './lib/codemirror/addon/dialog/dialog.css';
import './lib/hint.min.css';
import './lib/inlet.css';
import './style.css';
export default App;