eruda-vue / vue-devtools /postcss.config.js
soiz1's picture
Upload folder using huggingface_hub
4d70170 verified
raw
history blame
211 Bytes
const path = require('node:path')
module.exports = {
plugins: [
require('autoprefixer'),
require('tailwindcss')(path.resolve(__dirname, './tailwind.config.js')),
require('postcss-nested'),
],
}