anyone ever had issues with some 11ty templates overriding others? i know this is user error; i’ve misconfigured this project somehow but i can’t for the life of me reckon how.
      …in reply to @404boyfriend
      using eleventy-plugin-vue, i’ve got two templates: home.vue and book.vue. the home template has an explicit "/index.html" permalink, and the book template paginates based on some json, and dynamically permalinks to "/${slugify(data.book.title)}/index.html"
        …in reply to @404boyfriend
        if i save the home.vue file, the homepage will work but all the /{book} routes will just be an empty html file (they do use the specified layout correctly, just no content. if i save the book.vue file, the books all generate correctly but the homepage is an empty html file. 😳