Created
April 20, 2016 15:33
-
-
Save drew-t/6a10629a4127a974e69e7e39f0c787f6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Combine the files. Having fewer files saves space and takes less time to load. | |
2. Precompile means that those files are changed into basic css or javascript before they are run. | |
3. minify means to strip them of whitespace, http://cdn.speedrak.com/images/blog-images/seoblogger-after-minify-css.PNG | |
4. the file in the browser is showing all js from the entire site vs solely what we have in that file(concatenated) | |
5. instructions that tell Sprockets which files to require in order to build a single CSS or JavaScript, | |
application.js, application.css | |
6. *= require_***** application.css.scss | |
7. provides an easy way to tell whether two versions of a file are identical, allows for caching: check to see if name has changed | |
if not, don't pull down file |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
👍