Maison > Questions et réponses > le corps du texte
J'ai ajouté la surveillance Sentinel à mon application Quasar mais Sentinel ne reçoit aucune erreur et n'apparaît pas dans son panneau
J'ai créé /src/boot/sentry.js
et écrit le code suivant :
import { boot } from "quasar/wrappers"; import * as Sentry from "@sentry/vue"; import { BrowserTracing } from "@sentry/tracing"; export default boot(({ app, router }) => { Sentry.init({ app, dsn: "<my sentry dns>", integrations: [ new BrowserTracing({ routingInstrumentation: Sentry.vueRouterInstrumentation(router), tracingOrigins: ["localhost", "my-site-url.com", regex], }), ], trackComponents: true, tracesSampleRate: 1.0, }); });
Mon application Quasar est ssr. Comment dois-je le réparer ?
P粉0329772072024-03-27 11:04:24
J'ai résolu mon problème en modifiant le code comme suit :
import { boot } from "quasar/wrappers"; import * as Sentry from "@sentry/browser"; import * as Integrations from "@sentry/integrations"; export default boot(({ Vue }) => { Sentry.init({ dsn: "", release: process.env.SENTRY_RELEASE, integrations: [ new Integrations.Vue({ Vue, attachProps: true }), new Integrations.RewriteFrames({ iteratee(frame) { // Strip out the query part (which contains `?__WB_REVISION__=**`) frame.abs_path = frame.abs_path.split("?")[0]; return frame; }, }), ], }); });