Files
chrono/postcss.config.mjs
Puechberty Arthur ab4b8b2924 chore: update dependencies and add postcss configuration
- Updated Next.js to version 16.2.4
- Updated Tailwind CSS and PostCSS to their latest versions
- Added autoprefixer to PostCSS configuration
- Created a .dockerignore file to exclude unnecessary files from Docker context
2026-04-25 22:34:39 +02:00

8 lines
115 B
JavaScript

const config = {
plugins: {
"@tailwindcss/postcss": {},
autoprefixer: {},
},
};
export default config;