Open Widget

What's New

Discover the latest news and updates from the Nuxt community. Stay up to date with NuxtJS releases and upcoming events.

v0.0.1

Blanked 0.0.1 is out !

Jan 21, 2024

blanked-first-release.png

Blanked 0.0.1 is out !

Blanked is a Nuxt module to improve your Nuxt workflow. It's a simple module to add everything you need to your Nuxt app, including:

TailwindCSS

  • Color Mode, add a color mode switcher to your app (dark/light or custom)
  • Icons, add every icons from your favorite icon pack (Heroicons and Lucide are pre-installed) Thanks to @egoist/tailwindcss-icons plugin, only the icons you use in your app will be bundled in your CSS. However, you need to install the icon collections you specified in the blanked.icons key:

From

{
  "name": "new-blanked-project",
  "private": true,
  "type": "module",
  "scripts": {
    "dev": "nuxi dev",
    "build": "nuxi build",
    "generate": "nuxi generate"
  },
  "devDependencies": {
    "nuxt": "latest",
    "@nuxtjs/color-mode": "latest",
    "@nuxtjs/tailwindcss": "latest",
    "@tailwindcss/aspect-ratio": "^0.4.2",
    "@tailwindcss/container-queries": "^0.1.1",
    "@tailwindcss/forms": "^0.5.7",
    "@tailwindcss/typography": "^0.5.10",
    "@egoist/tailwindcss-icons": "^1.7.2",
    "@iconify-json/heroicons": "^1.1.19",
    "@iconify-json/lucide": "^1.1.154",
    "tailwindcss": "^3.4.1",
    "nuxt-icon": "^0.6.8"
  }
}

To

{
  "name": "new-blanked-project",
  "private": true,
  "type": "module",
  "scripts": {
    "dev": "nuxi dev",
    "build": "nuxi build",
    "generate": "nuxi generate"
  },
  "devDependencies": {
    "nuxt": "latest",
    "blanked": "latest"
  }
}

And finally some bug fixes

  • Fixed some bugs when building the app
  • Fixed misconfiguration of the TailwindCSS module
  • Fixed Lucide icons import not working

Announcing NuxtLog

Jan 20, 2024

nuxtlog-announce.png

Announcing NuxtLog

Announcing NuxtLog, a beautiful changelog template for your Nuxt project. It's a lightweight, free and open source template for your changelog made with Vue, Nuxt and Tailwindcss. It leverages Nuxt Content for your feed which allows you to write markdown and use them as a CMS. It has a beautiful UI and is easy to use.

Features

  • Content using Nuxt Content
  • Multi theme
  • Support for code syntax highlighting
  • Widget to embed in other website
  • Native components:
    • Alert
    • Badge
    • Link
    • Button
    • Image
    • List
    • Copy update url
    • Search
  • Multi layout support
    • One column
    • Two column
  • Social display and share
  • Auto generate sitemap.xml, robots.txt, RSS and open graph image
  • SEO optimization

Installation

git clone git@github.com:HugoRCD/nuxtlog.git
cd nuxtlog
bun i

Usage

bun dev

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

MIT

Support

If you like this project, you can support me by giving a ⭐️ on this Github repository.

Credits