fix JS error if prism stylesheet is not being used on the page

c768c67c0ea7fa8c6d1126221c4696ec6126e6e6

Tucker McKnight | Sat Jan 03 2026

fix JS error if prism stylesheet is not being used on the page
frontend/top.js:31
Before
31
32
    const link = document.getElementById("prism-theme")
    link.href = link.href.split("/").slice(0, -1).concat(stylesheet).join("/")
After
31
32

    const link = document.getElementById("prism-theme")
    if (link) {
      link.href = link.href.split("/").slice(0, -1).concat(stylesheet).join("/")
    }