

Settings page under Tools → Theme SCSS Compiler in production-default mode — multiple file pairs with per-pair version and Frontend/Admin context, auto-compile and auto-enqueue enabled.
Compile SCSS (Sass) to CSS straight from the WordPress admin. Theme SCSS Compiler manages as many SCSS CSS file pairs as your theme needs, under Tools Theme SCSS Compiler. It uses the bundled scssphp library, so there is no Node.js, no build step and no command line. SCSS is the modern Sass syntax: plain CSS plus nesting, variables and @import.
wp_enqueue_scripts or admin_enqueue_scripts.style_loader_src filter. Your theme files stay untouched.@import-aware recompile – every partial (@import, @use, @forward) is tracked. Edit a partial and the next admin page load recompiles.wp_enqueue_style() for each pair and skips files already registered, so output is never duplicated.wp-config.php, your theme, or .env / Bedrock.manage_options. Change that with the tscsscompiler_capability filter.This plugin makes no external HTTP requests, sets no cookies, runs no telemetry and does not track users. All processing happens locally on your server. The bundled libraries (scssphp, league/uri, symfony/filesystem, PSR HTTP interfaces) are MIT licensed and GPL-compatible; their source is included in the plugin’s vendor/ directory.