@fixers/nuxt-mail
v1.0.1
Published
A Nuxt module that makes mail easy
Downloads
2
Readme
Nuxt Mail
A Nuxt module that makes mail easy for doing amazing things.
Features
- ⛰ Foo
- 🚠 Bar
- 🌲 Baz
Quick Setup
- Add
@fixers/nuxt-mail
dependency to your project
# Using pnpm
pnpm add -D @fixers/nuxt-mail
# Using yarn
yarn add --dev @fixers/nuxt-mail
# Using npm
npm install --save-dev @fixers/nuxt-mail
- Add
@fixers/nuxt-mail
to themodules
section ofnuxt.config.ts
export default defineNuxtConfig({
modules: [
'@fixers/nuxt-mail'
]
})
That's it! You can now use Nuxt Mail in your Nuxt app ✨
Development
# Install dependencies
npm install
# Generate type stubs
npm run dev:prepare
# Develop with the playground
npm run dev
# Build the playground
npm run dev:build
# Run ESLint
npm run lint
# Run Vitest
npm run test
npm run test:watch
# Release new version
npm run release