Hello,
I apologize for this simple question - I did try and search…
I want to use the pipeline feature to build my CSS from SCSS. I used the example
{{ $styles := resources.Get "scss/style.scss" | toCSS }}
<link rel="stylesheet" href="{{ $styles.Permalink }}" integrity="{{ $styles.Data.Integrity }}" media="screen">
The result though is my href just points to the root of my site - not the scss/style.css path to my generated css file. I guess I don’t really understand the .Permalink property in this case. Do I need to have something in my config.toml file to set permalinks for styles?
This must be something simple I’m missing because I can’t find anyone else asking about it. Thanks for any help.