logspot logo

logspot

Logspot is an open source change log template made with Nuxt, Vue, and Tailwindcss. Subscribe to our newsletter to get the latest updates or follow us on twitter.

Aug 5, 2025

Logspot V2 is here!

Thrilled to announce the launch of logspot!

logspot-banner

Logspot is a lightweight, free and open source template for your changelog made with Vue, Nuxt and Tailwindcss.

Features

  • Dark mode
  • Markdown support
  • RSS feed
  • Search
  • Themeable
  • Document driven mode
  • Access to over 100,000 icons with Iconify
  • Code highlighting with Shiki
  • Completely static
  • Use your own logo
  • Use your own favicon
  • Frontmatter support (Dates, Authors and other metadata)
Aug 0, 2025

Dark mode polish

We refined dark mode contrasts across the app and enabled dual Shiki themes so code blocks adapt to color mode.

// nuxt.config.ts (excerpt)
export default defineNuxtConfig({
  content: {
    build: {
      markdown: {
        highlight: {
          theme: { default: 'github-light', dark: 'github-dark' }
        }
      }
    }
  }
})

This significantly improves readability for both light and dark users.

Aug 5, 2025

Migrate to Nuxt UI V3

We replaced bespoke UI elements with Nuxt UI V3 components to ensure better accessibility, consistency, and DX.

  • Adopted UApp, UContainer, and UTimeline
  • Tuned theme via app.config.ts
  • Reduced custom CSS in favor of Tailwind utility classes

This makes Logspot easier to maintain and theme.

Aug 5, 2025

Search and RSS groundwork

We prepared the project for search and RSS features by organizing content into a changelog collection and aligning frontmatter.

---
title: Title here
description: Short description here
authors:
  - name: Your Name
    avatar: 'https://example.com/avatar.png'
date: 2025-04-05
---

This schema will help us build filters and generate feeds next.