I am working on a simple website with HTML, CSS and JavaScript. The styles are grouped as follows:
@import './variables.css';
@import "./bootstrap-overrides.css";
@import "./utils/utils.css";
@import './elements/elements.css';
@import './elements/title.css';
@import './elements/button.css';
@import './elements/input.css';
@import './modules/nav.css';
@import './modules/toggle-theme.css';
@import './modules/theme-search.css';
@import './modules/toggle-fullscreen.css';
Is there a way to concatenate and minify the styles, so that they all end up in a single file, say styles.min.css, for the production environment?