I use Liquid in my CSS. For example, I have test.css.liquidone that contains:
body {
background: {{ 'red' }};
}
When I run rake assets:precompile, it is not test.cssthat compiled, but still test.css.liquid, and the Liquid code is not parsed.
Asterisks use Tilt, which by default has a Liquid analyzer. I have Fluid enabled on my site.
Any idea what could be wrong?
source
share