admin管理员组文章数量:1344310
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?
- seems like stackoverflow is completely dead, since rise of AI :( – Alexander Kim Commented 21 hours ago
1 Answer
Reset to default 0If 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.
本文标签: nuxt3jsUsing sentrynuxt modulehow do i keep my DSN hidden from clientsideStack Overflow
版权声明:本文标题:nuxt3.js - Using @sentrynuxt module, how do i keep my DSN hidden from client-side? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743768464a2535679.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论