Installation
The following chapter explains how to install the lenne.Tech's nuxt base.
First step is to add the dependency to your project
npm
When using npm enter the following line in your terminal:
npm install --save-dev @lenne.tech/nuxt-base
pnpm
When using pnpm enter the following line:
pnpm add -D @lenne.tech/nuxt-base
yarn
When using yarn enter the following line:
yarn add --dev @lenne.tech/nuxt-base
Second step is to add the nuxt-base in your nuxt.config.ts
Therefor add '@lenne.tech/nuxt-base' to the modules in your nuxt.config.ts
export default defineNuxtConfig({
modules: [
'@lenne.tech/nuxt-base'
]
})