How WebOptimizer works
masterWebOptimizer sets up a transformation pipeline for static files (CSS and JS) that runs at runtime.
Key characteristics:
- On-demand generation: No output is generated until the first time a file is requested by a browser.
- In-memory storage: Transformed files are stored in memory and served quickly; no files are written to disk.
- Pipeline orchestration: Files can undergo multiple transformations (e.g., minification $\rightarrow$ fingerprinting $\rightarrow$ inlining) before being sent to the browser.
- High performance: Uses server-side and client-side caching to ensure minimal overhead.