通过 100 多个技巧学习 Nuxt!

resend
nuxt-resend

用于 Nuxt 的 Resend 集成

Nuxt Resend

npm versionnpm downloadsLicenseNuxt

ResendNuxt 的集成。

快速设置

  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.tsmodules 部分
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