Processing files with base64 embedded data is slow. Sometimes even so slow I get PHP timeouts (more than 30 seconds) with just three embedded fonts (±80Kb each).
I worked around this issue by replacing base64 data with reference keys and storing the references in an associative array. Then processing the SCSS and finally re-inject the base64 data.
To me, this feels like something that should be added to the core. But before putting in the work and creating a PR, I'd like to know if that's something you would accept as a feature.
Processing files with base64 embedded data is slow. Sometimes even so slow I get PHP timeouts (more than 30 seconds) with just three embedded fonts (±80Kb each).
I worked around this issue by replacing base64 data with reference keys and storing the references in an associative array. Then processing the SCSS and finally re-inject the base64 data.
To me, this feels like something that should be added to the core. But before putting in the work and creating a PR, I'd like to know if that's something you would accept as a feature.