mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-19 14:30:07 +00:00
Fix storybook build (#8849)
## Summary The strictExecutionOrder looks to have accidently been removed. This breaks the storybook build: https://github.com/vitejs/rolldown-vite/issues/182#issuecomment-3035289157 https://github.com/Comfy-Org/ComfyUI_frontend/actions/runs/21979369339/job/63498007630?pr=8842
This commit is contained in:
@@ -100,7 +100,8 @@ const config: StorybookConfig = {
|
||||
rolldownOptions: {
|
||||
treeshake: false,
|
||||
output: {
|
||||
keepNames: true
|
||||
keepNames: true,
|
||||
strictExecutionOrder: true
|
||||
},
|
||||
onwarn: (warning, warn) => {
|
||||
// Suppress specific warnings
|
||||
|
||||
Reference in New Issue
Block a user