码迷,mamicode.com
首页 > 其他好文 > 详细

vue项目 安装sentry监控日志

时间:2021-06-07 20:01:21      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:cin   sentry   clu   add   amp   specific   nbsp   项目   pre   

vue项目 安装sentry监控日志 https://sentry.io/chaoling/vue11/getting-started/javascript-vue/

# Using yarn
yarn add @sentry/vue @sentry/tracing

# Using npm
npm install --save @sentry/vue @sentry/tracing

 

Capturing Source Maps // webpack.config.js

npm install --save-dev @sentry/webpack-plugin
const SentryWebpackPlugin = require("@sentry/webpack-plugin");

module.exports = {
  // other configuration
  configureWebpack: {
    plugins: [
      new SentryWebpackPlugin({
        // sentry-cli configuration
        authToken: process.env.SENTRY_AUTH_TOKEN,
        org: "example-org",
        project: "example-project",
        release: process.env.SENTRY_RELEASE,

        // webpack specific configuration
        include: ".",
        ignore: ["node_modules", "webpack.config.js"],
      }),
    ],
  },
};

 

 

 

 

vue项目 安装sentry监控日志

标签:cin   sentry   clu   add   amp   specific   nbsp   项目   pre   

原文地址:https://www.cnblogs.com/hill-foryou/p/14856321.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!