Nuxt Nation 大会即将到来。加入我们,时间为 11 月 12-13 日。

resend
nuxt-resend

Nuxt 的 Resend 集成

Nuxt Resend

npm versionnpm downloadsLicenseNuxt

Resend 集成到 Nuxt 中。

快速设置

  1. 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
  1. 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