File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -47,10 +47,17 @@ next-env.d.ts
4747
4848
4949.env
50-
51- scripts
5250.vscode
5351mcp.json
54-
5552CLAUDE.md
56- .claude
53+ # Workspace documentation (keep these files)
54+
55+ # Apps workspace - ignore build artifacts only
56+ apps /* /node_modules /
57+ apps /* /build /
58+ apps /* /dist /
59+ apps /* /.next /
60+ apps /* /out /
61+ apps /* /.env
62+ apps /* /.env.local
63+ apps /* /pnpm-lock.yaml
Original file line number Diff line number Diff line change 1+ # Vercel Deployment - Ignore apps workspace
2+
3+ # Apps directory (desktop app deployed separately)
4+ apps /
5+ apps /**
6+
7+ # Only deploy web app (@codinit/web) from root
Original file line number Diff line number Diff line change 1+ packages :
2+ - ' .'
3+ - ' apps/*'
4+
15onlyBuiltDependencies :
26 - ' @swc/core'
37 - ' @vercel/speed-insights'
Original file line number Diff line number Diff line change 1+ {
2+ "$schema" : " https://openapi.vercel.sh/vercel.json" ,
3+ "buildCommand" : " pnpm build" ,
4+ "devCommand" : " pnpm dev" ,
5+ "installCommand" : " pnpm install --filter @codinit/web" ,
6+ "framework" : " nextjs" ,
7+ "outputDirectory" : " .next" ,
8+ "ignoreCommand" : " git diff --quiet HEAD^ HEAD ./" ,
9+ "regions" : [" iad1" ],
10+ "cleanUrls" : true ,
11+ "trailingSlash" : false ,
12+ "headers" : [
13+ {
14+ "source" : " /api/(.*)" ,
15+ "headers" : [
16+ {
17+ "key" : " Cache-Control" ,
18+ "value" : " no-store, max-age=0"
19+ }
20+ ]
21+ }
22+ ],
23+ "rewrites" : [
24+ {
25+ "source" : " /s/:path*" ,
26+ "destination" : " /api/redirect/:path*"
27+ }
28+ ]
29+ }
You can’t perform that action at this time.
0 commit comments