I wanted to use Bootstrap 3 and Less together. Here is what I did:
- installed Node.js
- installed Less using npm
- downloaded bootstrap source (in a different directory than my project's directory)
- copied the entire '/less' subfolder to my project's working directory.
created my custom .less file (e.g. styles.less) and included the following: @import '../less/bootstrap.less'; @import '../less/utilities.less';
compiled in the Node command prompt using: ' lessc styles.less > styles.css '
My question:
Do I now need to only include the compiled styles.css file with my project or do I have to include all the bootstrap components as well?
Also, is this workflow recommended? (I actually read something similar in a smashingmagazine.com article).
PS: Apologies in advance for this silly (I think) question.
Thanks!