Skip to content

Commit 41dbd3f

Browse files
committed
fix: add output field to playground build task so Vercel cache restores dist
The playground was missed in 0443605 which added output: ["dist/**"] to all library package build tasks. Without it, vp replays terminal output on cache hits but never restores the actual dist/ files, causing Vercel to fail with "No Output Directory named dist found".
1 parent 878411e commit 41dbd3f

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

playground/vite.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ export default defineConfig(((conf: { command: string }) => ({
6666
{ auto: true },
6767
{ pattern: "!**/*.tsbuildinfo", base: "workspace" },
6868
],
69+
output: ["dist/**"],
6970
},
7071
},
7172
},

0 commit comments

Comments
 (0)