Nuxt Resend
快速设置
- 将
nuxt-resend
依赖项添加到您的项目中
# Using npm
npm install --save-dev nuxt-resend
# Using pnpm
pnpm add -D nuxt-resend
# Using yarn
yarn add --dev nuxt-resend
# Using bun
bun add --D nuxt-resend
- 将
nuxt-resend
添加到nuxt.config.ts
文件的modules
部分
export default defineNuxtConfig({
modules: [
'nuxt-resend'
]
})
将以下配置添加到您的 .env
文件中,将 < >
中的值替换为您的 Resend API 密钥。
NUXT_RESEND_API_KEY="<your_resend_api_key>"
就是这样!您现在可以在您的 Nuxt 应用程序中使用 Nuxt Resend ✨
开发
# 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 checks
pnpm run check
# Run Vitest
pnpm run test
pnpm run test:watch
# Release new version
pnpm run release