use Leafo\ScssPhp\Compiler;
use Leafo\ScssPhp\Server;
$scss = new Compiler();
$scss->setFormatter('Leafo\ScssPhp\Formatter\Compressed');
$server = new Server('stylesheets', null, $scss);
$server->serve();
The compiled file does not include the code from imported files, instead it's outputting @import "whateverfile.scss";
From the documentation:
The compiled file does not include the code from imported files, instead it's outputting
@import "whateverfile.scss";