You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How can I keep the css order in the css file when I use extract-text-webpack-plugin?
// app.js
import '../scss/index.scss';
import AnComponent from './components/AnComponent/index';
// ./components/AnComponent/index.js
import './src/scss/index.scss';
export default class AnComponent Component {
render() {
return (
<div class="component">
I am a example component
</div>
);
}
}
How can I keep the css order in the css file when I use extract-text-webpack-plugin?
How can ensure
./scss/index.scssis before./components/AnComponent/src/scss/index.scssin the output css file when I use extract-text-webpack-plugin?