From aff6bf77afecee184e36b2c74f689f64a6448c54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Tue, 30 May 2023 08:36:01 +0200 Subject: [PATCH] Remove console.log --- postcss.config.js | 2 -- 1 file changed, 2 deletions(-) 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] : [])],