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.
Thrilled to announce the launch of logspot!
Logspot is a lightweight, free and open source template for your changelog made with Vue, Nuxt and Tailwindcss.
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.
We replaced bespoke UI elements with Nuxt UI V3 components to ensure better accessibility, consistency, and DX.
UApp
, UContainer
, and UTimeline
app.config.ts
This makes Logspot easier to maintain and theme.
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.