23 lines
441 B
TypeScript
23 lines
441 B
TypeScript
import { defineConfig } from "@pandacss/dev"
|
|
|
|
export default defineConfig({
|
|
// Whether to use css reset
|
|
preflight: true,
|
|
|
|
// Where to look for your css declarations
|
|
include: ["./src/**/*.{js,jsx,ts,tsx}"],
|
|
|
|
// Files to exclude
|
|
exclude: [],
|
|
|
|
// Useful for theme customization
|
|
theme: {
|
|
extend: {}
|
|
},
|
|
|
|
// The output directory for your css system
|
|
outdir: "./src/styled-system",
|
|
|
|
|
|
})
|