pandabox
pandabox copied to clipboard
Request for deny list when using pluginStrictTokensScope
I want to set up deny list when I set up categories
in pluginStrictTokensScope
.
example.
import { defineConfig } from '@pandacss/dev'
import { pluginStrictTokensScope } from '@pandabox/panda-plugins'
export default defineConfig({
// ...
strictTokens: true,
// can also be used together with
// strictPropertyValues: true,
//
plugins: [
pluginStrictTokensScope({ excludeCategories: ['colors', 'spacing'] }),
],
})