Files
dealplustech/postcss.config.cjs
Kunthawat Greethong 87ec3846c9 fix: Rename postcss.config.js to .cjs (ES module compatibility)
- Astro 5.x uses ES modules
- postcss.config.js was CommonJS syntax
- Rename to .cjs to fix build error
- Fixes: module is not defined in ES module scope
2026-03-03 12:36:49 +07:00

7 lines
83 B
JavaScript

module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
};