@nuxtjs/sentry

Sentry module for Nuxt.js
Features
The module enables error logging through Sentry.
Setup
- Add
@nuxtjs/sentry dependency using yarn or npm to your project
- Add
@nuxtjs/sentry to modules section of nuxt.config.js
{
modules: [
['@nuxtjs/sentry', {
public_key: '',
private_key: '',
project_id: '',
config: {
environment: process.env.NODE_ENV !== 'production' ? 'development' : 'production',
},
}],
]
}
Usage
Enter your DSN in the NuxtJS config file. Additional config settings can be found here.
License
MIT License
Copyright (c) Diederik van den Burger diederik@webrelated.nl