As I work on developing a responsive web application using Twitter Bootstrap, my goal is to customize the Bootstrap framework to fit my specific needs. To do so, I have downloaded the Bootstrap source files from getbootstrap.com.
My plan is to customize Bootstrap without altering the original Less files. Instead, I will create my own Less files for customization, as shown below:
@import "../bootstrap/less/bootstrap.less";
@import "custom-variables.less";
@import "custom-other.less";
@import "../bootstrap/less/utilities.less";
Upon downloading the Bootstrap source, I noticed various folders in addition to the main Bootstrap Less folder.
Can anyone advise me on which files are necessary from the Bootstrap source folder to include in my web project?
Thank you in advance for any assistance provided.