1.0.3 • Published 2 years ago
nuxt3-sentry v1.0.3
Nuxt3 Sentry
New Nuxt3 Sentry module
Features
- ⛰ Adds Sentry to Nuxt3
Quick Setup
- Add
nuxt3-sentry
dependency to your project
# Using pnpm
pnpm add nuxt3-sentry
# Using yarn
yarn add nuxt3-sentry
# Using npm
npm install nuxt3-sentry
- Add
nuxt3-sentry
to themodules
section ofnuxt.config.ts
export default defineNuxtConfig({
modules: ["nuxt3-sentry"],
});
That's it! You can now use Nuxt3 Sentry in your Nuxt app ✨
Development
# Install dependencies
npm install
# Generate type stubs
npm run dev:prepare
# Develop with the playground
npm run dev
# Build the playground
npm run dev:build
# Run ESLint
npm run lint
# Run Vitest
npm run test
npm run test:watch
# Release new version
npm run release