Getting Started
Installation
Step-by-step guide to installing nanime
Two ways to add nanime to a Nuxt project.
Automatic Installation
nuxi installs the package and adds it to nuxt.config.ts in one
command.
npx nuxi module add nanime
pnpm dlx nuxi module add nanime
bun x nuxi module add nanime
Manual Installation
Install the package and register the module yourself.
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']
})