Skip to content

vuelessjs/vueless-module-nuxt

Repository files navigation

Vueless Nuxt Module

Quick Setup

  1. Install Vueless Nuxt Module to your project.
npm i @vueless/nuxt
npx vueless init
  1. Register @vueless/nuxt into the Nuxt config modules section in nuxt.config.{ts,js}
export default defineNuxtConfig({
  modules: [
    '@vueless/nuxt'
  ],
  ...
})
  1. Import Tailwind CSS and Vueless at the top of the main CSS file.
@import "tailwindcss";
@import "vueless";

That's it! You can now use Vueless in your Nuxt app ✨