From 711c57dca66a8fecb4789f3ee8dfb4a1ba2674f9 Mon Sep 17 00:00:00 2001 From: Jon <66625200+Kyro3400@users.noreply.github.com> Date: Sat, 28 Sep 2024 14:31:49 -0400 Subject: [PATCH] Create panda.config.js --- panda.config.js | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 panda.config.js diff --git a/panda.config.js b/panda.config.js new file mode 100644 index 0000000..266865b --- /dev/null +++ b/panda.config.js @@ -0,0 +1,8 @@ +import { defineConfig } from '@pandacss/dev' + +export default defineConfig({ + preflight: true, + include: ['./src/**/*.{ts,tsx,js,jsx}', './pages/**/*.{ts,tsx,js,jsx}'], + exclude: [], + outdir: 'styled-system' +})