nuxt-boot
Boot Nuxt
Features
- Foo
- Bar
- Baz
Quick Setup
- Add
nuxt-bootdependency to your project
# Using pnpm
pnpm add -D nuxt-boot
# Using yarn
yarn add --dev nuxt-boot
# Using npm
npm install --save-dev nuxt-boot
- Add
nuxt-bootto themodulessection ofnuxt.config.ts
export default defineNuxtConfig({
modules: [
'nuxt-boot'
]
})
That's it! You can now use My Module in your Nuxt app
Development
# Install dependencies
pnpm install
# Generate type stubs
pnpm run dev:prepare
# Develop with the playground
pnpm run dev
# Build the playground
pnpm run dev:build
# Run ESLint
pnpm run lint
# Run Vitest
pnpm run test
pnpm run test:watch
# Release new version
pnpm run release