Closed dante01yoon closed 10 months ago
Hi, thanks for reporting this!
telemetry: false
in the options and see if it is still happening? Thanks!Hi, thanks for reporting this!
- Are you on SaaS or self hosted Sentry?
- Is this consistently happening?
- Can you try setting
telemetry: false
in the options and see if it is still happening? Thanks!
Oh, sorry for missing infos.
It's not happening with telemetry: false
, however, I'm assume this should be work without set false to telemetry.
Yeah correct. We changed something a few days ago, lemme release that and we'll try again!
@dante01yoon We just released version 2.10.3
. Can you try that one out? Thanks!
@dante01yoon We just released version
2.10.3
. Can you try that one out? Thanks!
It works with telemetry flag. Thanks for quick catching up!
Resolved via 2.10.3
update
Environment
node 16.13.1 What version are you running? Etc.
"@sentry/react": "7.75.1", "@sentry/vite-plugin": "2.9.0", "vite": "^4.4.5",
npm
Steps to Reproduce
vite.config.ts
export default defineConfig(({ mode }) => {
return { // ... plugins: [ react(), sentryVitePlugin({ org: "my-sentry", project: "my-sentry-web-project", authToken: process.env.SENTRY_AUTH_TOKEN, errorHandler: function(err) { console.log("sentryVitePlugn err during upload: ", err), }) ], // ... } ...