From ff5d3045416df8472d45cf4d41ce3074bfbfc490 Mon Sep 17 00:00:00 2001 From: Pranav Date: Thu, 11 Sep 2025 00:35:54 -0700 Subject: [PATCH] chore(dev): Update histoire config for deployment (#12374) - Adds `.netlify` and `.histoire` directories to `.gitignore` to prevent deployment artifacts from being committed. - Adds `collectMaxThreads: 4` to `histoire.config.ts` to optimize resource usage during Netlify deployment. Fixes #CW-5579 Co-authored-by: Cursor Agent --- .gitignore | 4 ++++ histoire.config.ts | 1 + 2 files changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index bb0df62a8..7ca033f87 100644 --- a/.gitignore +++ b/.gitignore @@ -95,3 +95,7 @@ yarn-debug.log* .claude/settings.local.json .cursor CLAUDE.local.md + +# Histoire deployment +.netlify +.histoire diff --git a/histoire.config.ts b/histoire.config.ts index 15c5e7b64..41b6f3c13 100644 --- a/histoire.config.ts +++ b/histoire.config.ts @@ -4,6 +4,7 @@ import { HstVue } from '@histoire/plugin-vue'; export default defineConfig({ setupFile: './histoire.setup.ts', plugins: [HstVue()], + collectMaxThreads: 4, vite: { server: { port: 6179,