Files
kokken/postcss.config.mjs
Alex Polo 86685da067 feat: Add menu generation enhancements and API testing script
- Updated package.json to include new test scripts for API testing.
- Modified postcss.config.mjs to correctly configure Tailwind CSS and autoprefixer.
- Enhanced MenuGeneratorPage component to accept starter, main, and dessert requests.
- Updated API route to handle new menu generation parameters and log requests.
- Created LOGIN_CREDENTIALS.md for admin login information and user management instructions.
- Implemented test-api.mjs script to automate API endpoint testing and validate responses.
2025-11-07 14:46:33 +01:00

9 lines
105 B
JavaScript

const config = {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
};
export default config;