Integrate the Mailpit web UI effortlessly in the Nuxt devtools.
nuxt-mailpit dependency to your projectnpx nuxi@latest module add mailpit
nuxt-mailpit to the modules section of nuxt.config.tsexport default defineNuxtConfig({
modules: [
'nuxt-mailpit'
]
})
That's it! You can now use Mailpit in your Nuxt app ✨
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: "http://localhost:8025",
}
})
Suggestions for new features, bug reports and pull requests are welcome!
# 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