Guest User

Untitled

a guest
Nov 14th, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. import * as Sentry from "@sentry/browser";
  2.  
  3. Sentry.init({
  4. dsn: "my dsn",
  5. integrations: [new Sentry.Integrations.Vue({ Vue })]
  6. });
  7.  
  8. // This prevents sentry from being used
  9. Vue.config.errorHandler = (msg, vm , info) => {
  10. alert(info)
  11. }
Add Comment
Please, Sign In to add comment