postiz-app/apps/frontend/postcss.config.js
2024-02-03 23:54:39 +07:00

10 lines
No EOL
175 B
JavaScript

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