Getting Started
Installation
Step-by-step guide to installing nanime
Get started with nanime in your Nuxt project in just a few steps.
Automatic Installation
The easiest way to install the module is using nuxi:
npx nuxi module add nanime
pnpm dlx nuxi module add nanime
bun x nuxi module add nanime
This command will automatically install the package and add it to your nuxt.config.ts.
Manual Installation
If you prefer to install manually:
Install the package
Install nanime using your package manager of choice:
npm install nanime
pnpm add nanime
bun add nanime
Configure Nuxt
Add nanime to the modules section of your nuxt.config.ts:
nuxt.config.ts
export default defineNuxtConfig({
modules: ['nanime']
})