- 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.
9 lines
105 B
JavaScript
9 lines
105 B
JavaScript
const config = {
|
|
plugins: {
|
|
tailwindcss: {},
|
|
autoprefixer: {},
|
|
},
|
|
};
|
|
|
|
export default config;
|