Getting started
A quick tutorial to get you up and running with NuxtLego.
NuxtLego is a Nuxt Layer, which enable you to instantly add primitive components into your Nuxt project.
You just have to add the following code into your Nuxt config.
Install
npm install --save-dev nuxt-lego
# Using yarn
yarn add --dev nuxt-lego
Requires Nuxt >= 3.1.0.
Register Layer
nuxt.config.ts
nuxt.config.ts
export default defineNuxtConfig({
extends: ["nuxt-lego"],
});