2023-07-19 22:11:34 +01:00
|
|
|
let tailwindConfig = process.env.HUGO_FILE_TAILWIND_CONFIG_JS || './tailwind.config.js';
|
|
|
|
const tailwind = require('tailwindcss')(tailwindConfig);
|
|
|
|
const autoprefixer = require('autoprefixer');
|
|
|
|
|
|
|
|
module.exports = {
|
2023-08-12 16:45:00 +01:00
|
|
|
plugins: [
|
|
|
|
require('postcss-import'),
|
|
|
|
require('@tailwindcss/nesting'),
|
|
|
|
tailwind,
|
2023-08-26 12:21:02 +01:00
|
|
|
autoprefixer
|
2023-08-12 16:45:00 +01:00
|
|
|
],
|
2023-07-19 22:11:34 +01:00
|
|
|
};
|