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'] }),
],
})
I want to set up deny list when I set up
categories
inpluginStrictTokensScope
.example.