我正在使用Sentry进行一些Vue JS日志记录,其app.js文件中包含以下内容,该文件是使用Laravel-mix / Webpack编译的:
//Sentry JS logging
import * as Sentry from '@sentry/browser'
Sentry.init({
dsn: 'https://????????????????????????@sentry.io/????????',
integrations: [new Sentry.Integrations.Vue({ Vue })],
// debug: true,
});
我想知道:
a)在Sentry中,是否可以继续将错误推送到控制台?如果我打开debug选项,它会向控制台发送一些信息,但对调试不是很有用。
b)我知道可以将环境变量拖入Laravel-Mix,但是我不确定如何在app.js文件中使用它们?即如果我只想为开发环境使用debug: true
。