Hi all, new to Hugo. Spent dozens of hours in it this past week. I’m in love. ![]()
One thing I’m noticing: I added the CSS class md:space-y-32 to a template. Hugo rebuilds in docker. But the CSS class doesn’t take effect.
I eventually added this:
```
/** @type {import(‘tailwindcss’).Config} /
module.exports = {
presets: [require(‘./themes/hugo-saasify-theme/tailwind.config.js’)],
content: [
“./hugo_stats.json”,
"./themes/hugo-saasify-theme/layouts/**/.html",
“./layouts//*.html",
"./content//*.{html,md}”
],
```
In tailwind.config.js, specifically I added ./hugo_stats.json (where the CSS class is) - but I wonder, is this an appropriate fix for this? Thank you!