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

mailpit
nuxt-mailpit

将 Mailpit Web UI 集成到 Nuxt 开发者工具中

Nuxt Mailpit

npm versionnpm downloadsLicenseNuxt

轻松地将 Mailpit Web UI 集成到 Nuxt 开发者工具中。

特性

  • 🧙 开发者工具集成:直接从 Nuxt 开发者工具访问 Mailpit Web UI。

快速设置

  1. nuxt-mailpit 依赖项添加到您的项目中
npx nuxi@latest module add mailpit
  1. nuxt-mailpit 添加到 nuxt.config.ts 文件的 modules 部分
export default defineNuxtConfig({
  modules: [
    'nuxt-mailpit'
  ]
})
  1. 确保您已安装并运行 Mailpit。

就是这样!您现在可以在您的 Nuxt 应用中使用 Mailpit ✨

模块选项

export default defineNuxtConfig({
  modules: ["nuxt-mailpit"],
  mailpit: {
    // Enable or disable the Mailpit web UI in devtools
    devtools: true,
    // The URL of the Mailpit web UI
    webUiUrl: "https://127.0.0.1:8025",
  }
})

贡献

欢迎提出新功能建议、错误报告和 Pull Request!

开发

# 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