diff --git a/postcss.config.js b/postcss.config.js index ae9c262..5382ffb 100644 --- a/postcss.config.js +++ b/postcss.config.js @@ -2,8 +2,6 @@ let tailwindConfig = process.env.HUGO_FILE_TAILWIND_CONFIG_JS || './tailwind.con const tailwind = require('tailwindcss')(tailwindConfig); const autoprefixer = require('autoprefixer'); -console.log(`/* Using postcss.config.js from ${tailwindConfig} */`); - module.exports = { // eslint-disable-next-line no-process-env plugins: [tailwind, ...(process.env.HUGO_ENVIRONMENT === 'production' ? [autoprefixer] : [])],