You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
432 B
TypeScript
21 lines
432 B
TypeScript
3 months ago
|
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}", "./pages/**/*.{js,jsx,ts,tsx}"],
|
||
|
|
||
|
// Files to exclude
|
||
|
exclude: [],
|
||
|
|
||
|
// Useful for theme customization
|
||
|
theme: {
|
||
|
extend: {},
|
||
|
},
|
||
|
|
||
|
// The output directory for your css system
|
||
|
outdir: "styled-system",
|
||
|
});
|