You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now that all vendor and custom CSS and JS is included with the project, there's no reason not to concat and minify it all. This will reduce the number of requests made to load the page by ~7, and hopefully improve load time my some amount of milliseconds.
Add a Grunt task for concat-ing and minify-ing CSS and JS files.
The text was updated successfully, but these errors were encountered:
Concat-ing/minify-ing the css and js drops the request count by 6 and the total request size by 19KB. It has no obvious impact on page load speed; it's just slow because of Angular.
If we're truly concerned about performance, we should switch to some other templating option, probably server side. This will probably speed up rendering and let us cut out angular.min.js, saving a few more KB. Maybe I'll whip up a quick and dirty PHP version to compare against.
So it doesn't seem like there's anything dynamic except the "contact us" form, so why not just statically generate the site from templates once, instead of on every request?
Now that all vendor and custom CSS and JS is included with the project, there's no reason not to concat and minify it all. This will reduce the number of requests made to load the page by ~7, and hopefully improve load time my some amount of milliseconds.
Add a Grunt task for concat-ing and minify-ing CSS and JS files.
The text was updated successfully, but these errors were encountered: