mirror of
https://github.com/chinchang/web-maker.git
synced 2025-07-15 11:06:21 +02:00
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.
12 lines
341 B
JavaScript
12 lines
341 B
JavaScript
import App from './components/app.jsx';
|
|
|
|
import './lib/codemirror/lib/codemirror.css';
|
|
import './lib/codemirror/addon/hint/show-hint.css';
|
|
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;
|