Files
bun.sh/src/init/react-nextjs/postcss.config.mjs
Lydia Hallie 3702b7ed3e Add Next.js starter template to bun init
Add --react=nextjs flag to init command with a complete Next.js template
featuring app router, TypeScript, and Tailwind CSS.
2025-11-14 13:39:46 -08:00

8 lines
94 B
JavaScript

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