Skip to content

Commit

Permalink
Fix sentry release name (#643)
Browse files Browse the repository at this point in the history
  • Loading branch information
hidden4003 authored Sep 19, 2023
1 parent c9e6ac7 commit 6260f92
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ export default defineConfig(async () => {
authToken: process.env.SENTRY_AUTH_TOKEN,
org: 'shoko-anime',
project: 'shoko-webui',
release: isDebug ? 'dev' : version,
release: {
name: isDebug ? 'dev' : version,
},
include: './dist',
urlPrefix: '~/webui/dist/',
ignore: [],
Expand Down

0 comments on commit 6260f92

Please sign in to comment.