From b1e2c8fd5cb5dfa46bc440a12eafaf56cd844b1c Mon Sep 17 00:00:00 2001 From: Philipp Tanlak Date: Mon, 24 Nov 2025 20:54:57 +0100 Subject: Docs --- postcss.config.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 postcss.config.js (limited to 'postcss.config.js') diff --git a/postcss.config.js b/postcss.config.js new file mode 100644 index 0000000..f45bc24 --- /dev/null +++ b/postcss.config.js @@ -0,0 +1,12 @@ +let tailwindConfig = process.env.HUGO_FILE_TAILWIND_CONFIG_JS || './tailwind.config.js'; +const tailwind = require('tailwindcss')(tailwindConfig); +const autoprefixer = require('autoprefixer'); + +module.exports = { + plugins: [ + require('postcss-import'), + require('@tailwindcss/nesting'), + tailwind, + autoprefixer + ], +}; -- cgit v1.2.3