Nuxt Changelog Template
March 31, 2026 ยท View on GitHub
Use this template to create your own changelog with Nuxt UI.
Quick Start
npm create nuxt@latest -- -t ui/changelog
Deploy your own
Config
To customize the GitHub repository that the changelog fetches releases from, update the repository key in app/app.config.ts:
// app/app.config.ts
export default defineAppConfig({
repository: 'nuxt/ui' // Change this to your GitHub repository (e.g., 'facebook/react')
})
Setup
Make sure to install the dependencies:
pnpm install
Development Server
Start the development server on http://localhost:3000:
pnpm dev
Production
Build the application for production:
pnpm build
Locally preview production build:
pnpm preview
Check out the deployment documentation for more information.
Renovate integration
Install Renovate GitHub app on your repository and you are good to go.