When I changed the theme of my site to minimal a few days ago, something broke and I was unable to deploy further updates.
the log shows this in vercel
[02:11:21.679] Cloning github.com/RecursiveFunctions/digital-garden (Branch: main, Commit: 4cddfff)
[02:11:22.050] Cloning completed: 368.000ms
[02:11:22.357] Restored build cache from previous deployment (redacted)
[02:11:22.542] Running build in Washington, D.C., USA (East) – iad1
[02:11:22.820] Running "vercel build"
[02:11:23.191] Vercel CLI 41.3.2
[02:11:23.748] Running "install" command: npm install
...
[02:11:25.975]
[02:11:25.976] added 1 package, and audited 502 packages in 2s
[02:11:25.976]
[02:11:25.977] 134 packages are looking for funding
[02:11:25.977] run npm fund
for details
[02:11:25.980]
[02:11:25.980] 4 vulnerabilities (1 moderate, 3 high)
[02:11:25.981]
[02:11:25.981] To address all issues, run:
[02:11:25.981] npm audit fix
[02:11:25.981]
[02:11:25.982] Run npm audit
for details.
[02:11:26.241]
[02:11:26.243] > web@1.0.0 prebuild
[02:11:26.244] > rimraf dist
[02:11:26.244]
[02:11:26.317]
[02:11:26.318] > web@1.0.0 build
[02:11:26.318] > npm-run-all get-theme build:*
[02:11:26.318]
[02:11:26.590]
[02:11:26.592] > web@1.0.0 get-theme
[02:11:26.592] > node src/site/get-theme.js
[02:11:26.592]
[02:11:26.910]
[02:11:26.912] > web@1.0.0 build:eleventy
[02:11:26.912] > cross-env ELEVENTY_ENV=prod >NODE_OPTIONS=--max-old-space-size=4096 eleventy
[02:11:26.912]
[02:11:28.199] [11ty] Problem writing Eleventy >templates: (more in DEBUG output)
[02:11:28.200] [11ty] Output conflict: multiple input files are writing to dist/index.html
. Use distinct permalink
values to resolve this conflict.
[02:11:28.200] [11ty] 1. ./src/site/notes/src/site/notes/About.md
[02:11:28.200] [11ty] 2. ./src/site/notes/About.md (via DuplicatePermalinkOutputError)
[02:11:28.200] [11ty]
[02:11:28.200] [11ty] Original error stack trace: (Repeated output has been truncated…)
[02:11:28.200] [11ty] at TemplateMap.checkForDuplicatePermalinks (/vercel/path0/node_modules/@11ty/eleventy/src/TemplateMap.js:803:13)
[02:11:28.200] [11ty] at TemplateMap.cache (/vercel/path0/node_modules/@11ty/eleventy/src/TemplateMap.js:488:10)
[02:11:28.201] [11ty] at process.processTicksAndRejections (node:internal/process/task_queues:105:5)
[02:11:28.201] [11ty] at async TemplateWriter._createTemplateMap (/vercel/path0/node_modules/@11ty/eleventy/src/TemplateWriter.js:330:5)
[02:11:28.201] [11ty] at async TemplateWriter.generateTemplates (/vercel/path0/node_modules/@11ty/eleventy/src/TemplateWriter.js:360:5)
[02:11:28.201] [11ty] at async TemplateWriter.write (/vercel/path0/node_modules/@11ty/eleventy/src/TemplateWriter.js:407:23)
[02:11:28.201] [11ty] at async Eleventy.executeBuild (/vercel/path0/node_modules/@11ty/eleventy/src/Eleventy.js:1191:13)
[02:11:28.202] [11ty] Copied 12 files / Wrote 0 files in 0.28 seconds (v2.0.1)
[02:11:28.228] ERROR: "build:eleventy" exited with 1.
[02:11:28.242] Error: Command "npm run build" exited with 1
[02:11:28.422]
I don't really want to spend a lot of time debugging this while I'm on vacation so I'll just keep making notes until I can make time to resolve this.
My eyes tend to glaze over when looking at logs like this, but this might be a clue
[02:11:28.200] [11ty] Output conflict: multiple input files are writing to `dist/index.html`. Use distinct `permalink` values to resolve this conflict.
[02:11:28.200] [11ty] 1. ./src/site/notes/src/site/notes/About.md
[02:11:28.200] [11ty] 2. ./src/site/notes/About.md (via DuplicatePermalinkOutputError)
There are multiple copies of my About page for some reason, so I deleted the copies and that seemed to resolve the issue.
sooo the site deployed, but now most of the pages redirect back to my About page. What's going on here? I took a look my vault again in obsidian

Maybe I need to have my src file copy the same structure as my vault??
nope, when I did that it failed to deploy.
Maybe I should just go back to the last successful deployment.

I need to learn more about markdown file format. I should create a note about that.