generated from renchris/panda-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpanda.config.ts
39 lines (31 loc) · 871 Bytes
/
panda.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// eslint-disable-next-line import/no-extraneous-dependencies
import { defineConfig } from '@pandacss/dev'
import table from 'recipes/table.recipe'
export default defineConfig({
// Whether to use css reset
preflight: true,
presets: ['@pandacss/preset-base', '@park-ui/panda-preset'],
// Where to look for your css declarations
include: [
'./src/components/**/*.{ts,tsx,js,jsx}',
'./src/app/**/*.{ts,tsx,js,jsx}',
],
// Files to exclude
exclude: [],
// Useful for theme customization
theme: {
extend: {
slotRecipes: {
table,
},
},
},
// The output directory for your css system
outdir: 'styled-system',
/**
* Outputs base JSX component library
* https://panda-css.com/docs/concepts/style-props#jsx-patterns
* https://panda-css.com/docs/concepts/patterns
* */
jsxFramework: 'react',
})