Hi, my Jekyll install isn’t processing any of my SCSS variables.
I have the following structure:
_scss/
|--base/
| |--_variables.scss
|--components/
| |--_buttons.scss
|--layout/
| |--_grid.scss
|--main.scss
assets
|--css/
| |--styles.scss
Contents of _sass/main.scss
:
@import "base/variables"
@import "components/buttons"
@import "layout/grid"
Contents of assets/css/styles.scss
:
---
---
@import "main"
My config settings:
sass:
sass_dir: _sass
The compilation looks like it happens and builds without error, but the resulting styles.css
has the SCSS variables in it so it seems like they weren’t compiled.
Any idea what might be going on? Thanks for any tips.