The package.json file has been updated to include the dependencies for Prettier and the Prettier plugin for Tailwind CSS. Prettier is a code formatter that helps maintain consistent code style across the project. The Prettier plugin for Tailwind CSS ensures that the Tailwind CSS code is formatted correctly. Additionally, a new prettier.config.js file has been added to configure Prettier with the Tailwind CSS plugin. This will improve the code formatting and maintainability of the frontend codebase.
3 lines
75 B
JavaScript
3 lines
75 B
JavaScript
module.exports = {
|
|
plugins: [require("prettier-plugin-tailwindcss")],
|
|
};
|