galaxis-po/frontend/postcss.config.mjs
zephyrdark 6e30ecea03 feat(frontend): initialize shadcn/ui configuration
- Add tailwind.config.ts with shadcn/ui theme colors
- Update globals.css with CSS variables for dark/light mode
- Add utils.ts with cn() helper function
- Add components.json for shadcn/ui CLI
- Update postcss.config.mjs with autoprefixer
- Exclude playwright config from tsconfig to fix build

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-05 22:17:26 +09:00

9 lines
116 B
JavaScript

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