Hello,
I’m using Hugo v0.74.3-DA0437B4 and Tailwind 1.7.1
I’m compiling my css with PostCSS using Hugo pipelines. {{ $styles := resources.Get "css/site.css" | resources.PostCSS }}
like so. My postcss.config.js
file is as follows
const production = process.env.HUGO_ENVIRONMENT === "production";
module.exports = {
plugins: [
require("tailwindcss"),
require("autoprefixer"),
production && require("cssnano")
]
};
This generates css which includes some console.log
that comes from Tailwind. Like this:
info - You have opted-in to future-facing breaking changes: removeDeprecatedGapUtilities
info - These changes are stable and will be the default behavior in the next major version of Tailwind.
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;
...
Did anybody encounter this type of issue before?