mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 21:47:17 +00:00
9 lines
157 B
JavaScript
9 lines
157 B
JavaScript
|
|
// postcss.config.js
|
||
|
|
module.exports = {
|
||
|
|
plugins: [
|
||
|
|
require('tailwindcss'),
|
||
|
|
require('autoprefixer'),
|
||
|
|
// Other PostCSS plugins if needed
|
||
|
|
],
|
||
|
|
};
|