最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

nuxt3.js - Using @sentrynuxt module, how do i keep my DSN hidden from client-side? - Stack Overflow

programmeradmin0浏览0评论

When using @sentry/nuxt: 9.3.0, you have to create sentry.client.config.ts in the root level of your app.

Example sentry.client.config.ts contents:

Sentry.init({
  dsn: 'sentry key'
})

problem is if i use:

export default defineNuxtConfig({
  runtimeConfig: {
    dsnKey: 'secret-key', // available only on a server-side
    public: {}, // exposed to a client-side
  }
)}

public variables will be exposed to a client side in a console window.__NUXT__

but dsnKey is usable only on the server side and sentry.client.config.ts is only a client-side, i don't want to use sentry.server.config.ts, because it will log all server-side errors. What choices do i have?

When using @sentry/nuxt: 9.3.0, you have to create sentry.client.config.ts in the root level of your app.

Example sentry.client.config.ts contents:

Sentry.init({
  dsn: 'sentry key'
})

problem is if i use:

export default defineNuxtConfig({
  runtimeConfig: {
    dsnKey: 'secret-key', // available only on a server-side
    public: {}, // exposed to a client-side
  }
)}

public variables will be exposed to a client side in a console window.__NUXT__

but dsnKey is usable only on the server side and sentry.client.config.ts is only a client-side, i don't want to use sentry.server.config.ts, because it will log all server-side errors. What choices do i have?

Share Improve this question asked 21 hours ago Alexander KimAlexander Kim 18.4k24 gold badges107 silver badges165 bronze badges 1
  • seems like stackoverflow is completely dead, since rise of AI :( – Alexander Kim Commented 21 hours ago
Add a comment  | 

1 Answer 1

Reset to default 0

If you want to use a variable on the client-side during runtime, you need to make it public. The client-side needs to see the DSN to know where to send the errors to.

Your frontend is always public. As soon as you open the browser inspection tools, you are able to see the (minified) code, the network requests etc.

Just make sure to keep your Sentry Auth Token secret - this one is only used during build time.

发布评论

评论列表(0)

  1. 暂无评论