Use this template to create your own changelog with Nuxt UI.
npm create nuxt@latest -- -t github:nuxt-ui-templates/changelog
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')
})
Make sure to install the dependencies:
pnpm install
Start the development server on http://localhost:3000
:
pnpm dev
Build the application for production:
pnpm build
Locally preview production build:
pnpm preview
Check out the deployment documentation for more information.
Install Renovate GitHub app on your repository and you are good to go.