Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
A curated list of awesome Nuxt.js resources, built as a static VuePress site with Markdown content.
Awesome Nuxt is a curated directory of Nuxt.js resources, packaged as a static site built with VuePress and maintained on GitHub by Le Minh Tri (ansidev).
Awesome Nuxt is a curated list of plugins, modules, and tools for Nuxt.js, presented as a static website. It accepts markdown content as input and generates a browsable directory of Nuxt-related resources. The project runs on VuePress and is deployed via GitHub Pages using a GitHub Actions workflow. It complements the official Community Nuxt.js Awesome List by offering an alternative browsing experience.
content/.vuepress/dist after build.pnpm run dev compiles content and serves it locally with automatic updates when markdown files change.pnpm run build generates a deployable dist directory, and the repository ships a GitHub Actions workflow for Pages deployment.lint script that runs a markdown linter and a test script that invokes the linter.pnpm install, then pnpm run dev to serve the compiled content on your machine.pnpm run build and serve the generated content/.vuepress/dist folder anywhere.The workflow starts by cloning the repository and installing dependencies with pnpm install. Then pnpm run dev compiles the markdown content and starts a local server with hot reload. For production, pnpm run build generates a static dist directory that can be deployed with a static file server or via GitHub Pages using the included workflow.
