- App Router with src/ directory structure - Design system CSS variables (Oliver/Brandtech palette, light + dark mode) - Montserrat + Inter + JetBrains Mono font configuration - next-themes provider for theme toggle - Full folder structure per implementation plan - nvm configured for Node 22 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
8 lines
146 B
JavaScript
8 lines
146 B
JavaScript
/** @type {import('postcss-load-config').Config} */
|
|
const config = {
|
|
plugins: {
|
|
"@tailwindcss/postcss": {},
|
|
},
|
|
};
|
|
|
|
export default config;
|