nuxt-boot
v0.0.2
Published
boot nuxt
Downloads
2
Readme
nuxt-boot
Boot Nuxt
Features
- ⛰ Foo
- 🚠 Bar
- 🌲 Baz
Quick Setup
- Add
nuxt-boot
dependency 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-boot
to themodules
section 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