commit fcb916201797112b2f9bb4d0449ddccdc07e7c46 Author: ArthurDanjou <29738535+ArthurDanjou@users.noreply.github.com> Date: Sat Sep 6 14:11:17 2025 +0000 Initial commit Created from https://vercel.com/new diff --git a/.editorconfig b/.editorconfig new file mode 100755 index 0000000..9142239 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +# editorconfig.org +root = true + +[*] +indent_size = 2 +indent_style = space +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.md] +trim_trailing_whitespace = false diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4a7f73a --- /dev/null +++ b/.gitignore @@ -0,0 +1,24 @@ +# Nuxt dev/build outputs +.output +.data +.nuxt +.nitro +.cache +dist + +# Node dependencies +node_modules + +# Logs +logs +*.log + +# Misc +.DS_Store +.fleet +.idea + +# Local env files +.env +.env.* +!.env.example diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000..c483022 --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +shamefully-hoist=true \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..033e588 --- /dev/null +++ b/README.md @@ -0,0 +1,73 @@ +# Nuxt Changelog Template + +[![Nuxt UI](https://img.shields.io/badge/Made%20with-Nuxt%20UI-00DC82?logo=nuxt&labelColor=020420)](https://ui.nuxt.com) + +Use this template to create your own changelog with [Nuxt UI](https://ui.nuxt.com). + +- [Live demo](https://changelog-template.nuxt.dev/) +- [Documentation](https://ui.nuxt.com/getting-started/installation/nuxt) + + + + + + Nuxt Changelog Template + + + +## Quick Start + +```bash [Terminal] +npm create nuxt@latest -- -t github:nuxt-ui-templates/changelog +``` + +## Deploy your own + +[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fnuxt-ui-templates%2Fchangelog) + +## Config + +To customize the GitHub repository that the changelog fetches releases from, update the `repository` key in `app/app.config.ts`: + +```ts [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: + +```bash +pnpm install +``` + +## Development Server + +Start the development server on `http://localhost:3000`: + +```bash +pnpm dev +``` + +## Production + +Build the application for production: + +```bash +pnpm build +``` + +Locally preview production build: + +```bash +pnpm preview +``` + +Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information. + +## Renovate integration + +Install [Renovate GitHub app](https://github.com/apps/renovate/installations/select_target) on your repository and you are good to go. diff --git a/app/app.config.ts b/app/app.config.ts new file mode 100644 index 0000000..c171afd --- /dev/null +++ b/app/app.config.ts @@ -0,0 +1,17 @@ +export default defineAppConfig({ + repository: 'nuxt/ui', + ui: { + colors: { + primary: 'green', + neutral: 'slate' + }, + prose: { + li: { + base: 'break-words' + }, + a: { + base: 'break-words' + } + } + } +}) diff --git a/app/app.vue b/app/app.vue new file mode 100644 index 0000000..1154d79 --- /dev/null +++ b/app/app.vue @@ -0,0 +1,80 @@ + + +