Files
webgems/postcss.config.js
André Weller b4dfd58208 init project
2019-05-10 16:23:43 +02:00

10 lines
191 B
JavaScript

const join = require('path').join
const tailwindJS = join(__dirname, 'tailwind.js')
module.exports = {
plugins: [
require('tailwindcss')(tailwindJS),
require('autoprefixer')
]
}