Frontend Infrastructure¶
Warning
This section of documentation may be outdated.
Frontends assets for Kitsune are managed through Django Pipeline.
Bundles¶
To reduce the number of requests per page and increase overall performance,
JS and CSS resources are grouped into bundles. These are defined in
kitsune/bundles.py
, and are loaded into pages with template tags. Each
bundle provides a list of files which will be compiled (if necessary), minified,
and concatenated into the final bundle product.
In development, the minification and concatenation steps are skipped. In production, each file is renamed to contain a hash of it’s contents in the name, and files are rewritten to account for the changed names. This is called cache busting, and allows the CDN to be more aggressive in caching these resources, and for clients to get updates faster when we make changes.
Style Sheets¶
The styles written for Kitsune is mostly written in Sass using the SCSS synatax.
Sass files are recognized by an extension of .scss
.