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
This commit is contained in:
Kunthawat Greethong
2026-03-03 12:36:49 +07:00
parent 443c3377e2
commit 87ec3846c9

6
postcss.config.cjs Normal file
View File

@@ -0,0 +1,6 @@
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
};