Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion code/.storybook/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,13 @@ const config = defineMain({
server: {
watch: {
// Something odd happens with tsconfig and nx which causes Storybook to keep reloading, so we ignore them
ignored: ['**/.nx/cache/**', '**/tsconfig.json'],
ignored: [
'**/.nx/cache/**',
'**/tsconfig.json',
// Internal e2e writes traces under code/playwright-results while the dev server is running.
'**/playwright-results/**',
'**/playwright-report/**',
],
},
},
} satisfies typeof viteConfig);
Expand Down

This file was deleted.

This file was deleted.

Loading