Why is it that output files from deployment from CLI and github differ.
These are the output files from vercel --prod
!md-link-0
while these are from github auto deploy !md-link-1
This is my vercel.json
{ "version": 2, "builds": [ { "src": "dist/main.js", "use": "@vercel/node" } ], "routes": [ { "src": "/(.*)", "dest": "dist/main.js" } ], "buildCommand": "pnpm run build", "outputDirectory": "/dist", "installCommand": "pnpm install", "github": { "enabled": true }}Deployment and build setting on project !md-link-2
I want the github auto deploy to output files just like deployment from the CLI.