hugo-theme/postcss.config.js

14 lines
264 B
JavaScript
Raw Permalink Normal View History

2024-10-21 13:47:30 +02:00
const themeDir = __dirname;
/** @type {import('postcss-load-config').Config} */
const config = {
plugins: [
require('tailwindcss')(themeDir + '/tailwind.config.js'),
require('autoprefixer')({
path: [themeDir]
})
]
}
module.exports = config