Replies: 1 comment 1 reply
-
if you use the or if you're using the postcss plugin you can add this import { defineConfig, definePlugin } from '@pandacss/dev';
const skipCodegenPlugin = definePlugin({
name: 'skip-codegen',
hooks: {
'codegen:prepare': () => {
return [];
},
},
});
export default defineConfig({
plugins: [skipCodegenPlugin],
// ... |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In a monorepo, Is it expected for each
panda.config.ts
file to generate astyled-system
folder per each app? I was assuming you could build your preset in one library and export thestyled-system
folder. Then apps would consume this via package.Every now and then I get a
styled-system
folder generated in my app folders, nothing is referencing it, so I just remove it.Beta Was this translation helpful? Give feedback.
All reactions