fbcc5f8f5b
- Update head-styles.html to always load bundle.min.css - Remove development/production conditional CSS loading - Add CSS auto-rebuild to pre-commit hook - Track bundle.min.css in git (unignore it) - Reduces initial CSS requests from 28+ to 1
8 lines
396 B
HTML
8 lines
396 B
HTML
{{define "head-styles"}}
|
|
<!-- CSS - Always use bundled CSS (built via 'make css-prod') -->
|
|
<!-- Individual CSS files are merged into one bundle to reduce HTTP requests -->
|
|
<link rel="stylesheet" href="/static/dist/bundle.min.css">
|
|
<!-- Print styles - loaded separately, only applied when printing -->
|
|
<link rel="stylesheet" href="/static/css/print.css" media="print">
|
|
{{end}}
|