Skip to content

Commit 076a693

Browse files
committed
chore: ➕添加sentry
1 parent 290ee95 commit 076a693

6 files changed

+96
-6
lines changed

.env.production

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
RELEASE_VERSION ="v1.0.0"

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ node_modules
66
# local env files
77
.env.local
88
.env.*.local
9+
.sentryclirc
910

1011
# Log files
1112
npm-debug.log*

package-lock.json

+70
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
3939
"@commitlint/cli": "^8.3.5",
4040
"@commitlint/config-conventional": "^8.3.4",
41+
"@sentry/webpack-plugin": "^1.12.0",
4142
"@vue/cli-plugin-babel": "^4.0.5",
4243
"@vue/cli-plugin-eslint": "^4.0.5",
4344
"@vue/cli-plugin-unit-jest": "^4.0.5",

src/main.js

+8-4
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,14 @@ import AsideAd from '@/components/AsideAd.vue'
1414
import * as Sentry from '@sentry/browser'
1515
import { Vue as VueIntegration } from '@sentry/integrations'
1616

17-
Sentry.init({
18-
dsn: 'http://[email protected]:9000/2',
19-
integrations: [new VueIntegration({ Vue, attachProps: true, logErrors: true })]
20-
})
17+
if (process.env.NODE_ENV === 'production') {
18+
Sentry.init({
19+
dsn: 'https://[email protected]/5296080',
20+
release: process.env.RELEASE_VERSION,
21+
environment: process.env.NODE_ENV,
22+
integrations: [new VueIntegration({ Vue, attachProps: true, logErrors: true })]
23+
})
24+
}
2125

2226
// console.log(process.env.VUE_APP_host)
2327
// console.log(process.env.VUE_APP_pathname)

vue.config.js

+15-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
const CompressionPlugin = require('compression-webpack-plugin')
22
const productionGzipExtensions = ['js', 'css']
3+
4+
const SentryPlugin = require('@sentry/webpack-plugin')
5+
36
module.exports = {
47
publicPath: '/vue-blog/',
5-
outputDir: 'docs',
8+
outputDir: 'dist',
69
assetsDir: undefined,
710
runtimeCompiler: undefined,
8-
productionSourceMap: undefined,
11+
productionSourceMap: true,
912
parallel: undefined,
1013

1114
css: {
@@ -68,6 +71,16 @@ module.exports = {
6871
minRatio: 0.8
6972
})
7073
)
74+
75+
config.plugins.push(
76+
new SentryPlugin({
77+
include: './dist/',
78+
release: process.env.RELEASE_VERSION, // 一致的版本号
79+
configFile: 'sentry.properties', // 不用改
80+
ignore: ['node_modules', 'webpack.config.js'],
81+
urlPrefix: '~/vue-blog/' // 这里指的你项目需要观测的文件如果你的项目有publicPath这里加上就对了
82+
})
83+
)
7184
} else {
7285
// 开发环境
7386
}

0 commit comments

Comments
 (0)