-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpanda.config.ts
More file actions
34 lines (32 loc) · 835 Bytes
/
panda.config.ts
File metadata and controls
34 lines (32 loc) · 835 Bytes
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
import { defineConfig } from "@pandacss/dev";
import tokens from "./theme/tokens";
import semanticTokens from "./theme/semantic-tokens";
import textStyles from "./theme/text-styles";
import breakpoints from "./theme/breakpoints";
import keyframes from "./theme/keyframes";
import patterns from "./theme/patterns";
import { recipes, slotRecipes } from "./theme/recipes";
export default defineConfig({
preflight: true,
gitignore: true,
include: [
"src/**/*.{tsx,ts,jsx}",
"src/components/**/*.{ts,tsx,js,jsx}",
"src/app/**/*.{ts,tsx,js,jsx}",
],
jsxFramework: "react",
jsxFactory: "panda",
outdir: "styled-system",
exclude: [],
presets: [],
patterns: { extend: patterns },
theme: {
tokens,
semanticTokens,
textStyles,
breakpoints,
recipes,
slotRecipes,
keyframes,
},
});