This repository contains performance optimizations for the danielkliewer.com website to improve page load times and overall user experience.
- Compressed and resized images to reduce file sizes
- Added support for WebP format
- Implemented responsive images with srcset
- Added lazy loading for images
- Minified CSS files to reduce file size
- Minified JavaScript files to reduce file size
- Implemented critical CSS inlining for above-the-fold content
- Deferred loading of non-critical CSS and JavaScript
- Configured browser caching with .htaccess
- Set appropriate cache expiration times for different file types
- Added Cache-Control headers
- Enabled Gzip compression for text-based resources
- Configured compression for HTML, CSS, JavaScript, XML, and fonts
- Combined CSS files
- Inlined critical CSS
- Deferred loading of non-critical resources
- Preconnect to Google Fonts
- Preload critical fonts
- Added font-display swap for better rendering
# Install dependencies
npm install
# Start the Jekyll server
npm run serve
# Install the required dependencies
npm install
# Run the image optimization script
npm run optimize-images
This will create optimized versions of all images in the static/images-optimized
directory. The script:
- Compresses images to reduce file size
- Creates WebP versions for modern browsers
- Generates responsive image sizes (320px, 640px, 960px, 1280px)
# Minify CSS
npm run minify-css
# Minify JavaScript
npm run minify-js
Images are optimized using the Sharp library, which provides efficient image processing. The optimization script:
- Compresses JPEG, PNG, and WebP images
- Creates responsive versions for different screen sizes
- Generates WebP format for browsers that support it
To use responsive images in your HTML:
<img
src="/static/images-optimized/image.jpg"
srcset="
/static/images-optimized/image-320.jpg 320w,
/static/images-optimized/image-640.jpg 640w,
/static/images-optimized/image-960.jpg 960w,
/static/images-optimized/image-1280.jpg 1280w
"
sizes="(max-width: 768px) 100vw, 50vw"
loading="lazy"
alt="Description"
>
Critical CSS is inlined in the HTML to ensure fast rendering of above-the-fold content. Non-critical CSS is loaded asynchronously to prevent render-blocking.
Browser caching is configured in the .htaccess
file with appropriate expiration times:
- CSS and JavaScript: 1 year
- Images: 1 year
- HTML: 1 day
Gzip compression is enabled for text-based resources to reduce file sizes during transfer.
The site is configured to build and deploy on Netlify. Several fixes have been implemented to ensure smooth builds:
The fix_stories01_images.py
script addresses issues with image paths in story files:
- Replaces direct image references with the
story-image.html
include - Copies images from
input_images01/
tostatic/input_images/
to ensure they're available during build
To run this script:
python fix_stories01_images.py
The site uses a custom build command in the netlify.toml
file to ensure all image directories are copied to the build directory before running Jekyll:
command = """
mkdir -p static/input_images
# Copy image files from input_images directories
cp -r input_images01/* static/input_images/ || true
cp -r input_images02/* static/input_images/ || true
cp -r input_images03/* static/input_images/ || true
cp -r input_images04/* static/input_images/ || true
# Create empty placeholder files for problematic symlinks
touch static/input_images/B01N78T9F901_SCLZZZZZZZ_SX500_.jpg
touch static/input_images/B0BHLH14NQ01_SCLZZZZZZZ_SX500_.jpg
touch static/input_images/B0BW23BXYN01S001LXXXXXXX.jpg
touch static/input_images/books-003.JPG
touch static/input_images/books-005.JPG
touch static/input_images/books-007.JPG
touch static/input_images/books-013.JPG
touch static/input_images/books-015.JPG
# Run Jekyll build
jekyll build
"""
The _config.yml
file has been updated to exclude problematic symlink files from Jekyll processing:
exclude:
# Standard excludes
- .sass-cache/
- .jekyll-cache/
# ...
# Exclude problematic symlink files
- static/input_images/B01N78T9F901_SCLZZZZZZZ_SX500_.jpg
- static/input_images/B0BHLH14NQ01_SCLZZZZZZZ_SX500_.jpg
- static/input_images/B0BW23BXYN01S001LXXXXXXX.jpg
- static/input_images/books-003.JPG
- static/input_images/books-005.JPG
- static/input_images/books-007.JPG
- static/input_images/books-013.JPG
- static/input_images/books-015.JPG
For more details on the Netlify build configuration and fixes, see NETLIFY_BUILD_FIX.md.
-
Content Delivery Network (CDN)
- Consider implementing a CDN for global content distribution
- Options include Cloudflare, AWS CloudFront, or Fastly
-
Further Image Optimization
- Implement automatic WebP conversion for all images
- Consider using next-gen formats like AVIF for even better compression
-
JavaScript Optimization
- Implement code splitting for larger JavaScript files
- Consider using module/nomodule pattern for modern/legacy browsers
-
Preloading Key Resources
- Preload critical resources that are discovered late in the page load
- Use resource hints (preconnect, prefetch, preload) strategically