Do we run the CSS files through the liquid engine?
I would like to be able to build the CSS file using liquid so that we can expose some elements to the user for custom styling
Shopify docs:
https://shopify.github.io/slate/docs/styles-with-liquid#basics-of-liquid-styles
If I create a file called app.css.liquid
and incluide the following:
body {
font-family: {{"sans-serif"}};
}
The file is not found when using
<link rel="stylesheet" href="{{ "styles/app.css" | asset_url }}">
We could get around this by using {{ include "styles/app.css" }} and loading it from a partial, but this would then be without a CDN