Files
blog_juggernautplays_com/postcss.config.ts
SrJuggernaut 20cf804ac6 feat: add Panda CSS styling system with fonts and icons
Add @pandacss/dev, srjuggernaut-panda-preset, FontAwesome icons, and fonts to enable styling.
Update .gitignore to exclude styled-system directories.
2026-03-04 14:30:44 -06:00

7 lines
216 B
TypeScript

import pandacssPlugin from '@pandacss/dev/postcss'
import type { Plugin, Processor, Transformer } from 'postcss'
export default {
plugins: [pandacssPlugin()]
} as { plugins: (Plugin | Transformer | Processor)[] }