Next.js 15 + React 19, Tailwind v4, shadcn/ui (button, card, input, dialog), postcss config, standalone output. ESLint extended with next/core-web-vitals via eslint-config-next flat export. node-linker=hoisted in .npmrc to allow standalone builds on Windows (symlink restriction). next-env.d.ts added to .gitignore. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
8 lines
94 B
JavaScript
8 lines
94 B
JavaScript
const config = {
|
|
plugins: {
|
|
"@tailwindcss/postcss": {},
|
|
},
|
|
};
|
|
|
|
export default config;
|