Is it possible to customize Bootstrap 4 variables with build tools as outlined in this guide?
I am wondering how I can create a separate CSS file named MyCustomStyles.css
at the end of the build process by running npm build dist
. I have created a _MyCustomStyles.scss
file and added my code, but when I run npm build dist
, only Bootstrap files are generated without my separate CSS file. I don't want my code from _MyCustomStyles.scss
to be included inside the Bootstrap 4 files. What steps should I take to achieve this?