Files
crowd-funder-for-time-pwa/postcss.config.cjs
Matthew Raymer 3997a88b44 fix: rename postcss.config.js to .cjs for ES module compatibility
- Added "type": "module" to package.json to support ES module imports for Electron SQLite
- Renamed postcss.config.js to postcss.config.cjs to maintain CommonJS syntax
- This ensures build tools can properly load the PostCSS configuration
2025-05-30 05:10:26 +00:00

7 lines
83 B
JavaScript

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