Replies: 1 comment
-
This works: import { defineConfig, definePreset } from '@pandacss/dev';
import basePreset from '@pandacss/preset-base';
export default defineConfig({
eject: true,
exclude: [],
globalVars: {
'--global-font-body': 'Inter, sans-serif',
},
include: ['./src/**/*.{js,jsx,ts,tsx}'],
outdir: 'styled-system',
prefix: 'contra',
preflight: true,
presets: [
definePreset({
conditions: basePreset.conditions,
name: '@pandacss/preset-base-mini',
}),
],
}); |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Suppose I want to remove colors from the default preset or remove some utilities.
There is not a whole lot of documentation here:
https://github.com/chakra-ui/panda/tree/main/packages/preset-base
What's the best way to go about?
I know I can
eject: true,
to remove them entirely, but is there a way to customize what's getting added?Beta Was this translation helpful? Give feedback.
All reactions