pandabox icon indicating copy to clipboard operation
pandabox copied to clipboard

Request for deny list when using pluginStrictTokensScope

Open k35o opened this issue 9 months ago • 2 comments

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'] }),
  ],
})

k35o avatar May 17 '24 10:05 k35o