Use documented @sentry/vite-plugin config options

Use options documented at https://www.npmjs.com/package/@sentry/vite-plugin#release
This commit is contained in:
Hugh Nimmo-Smith
2025-01-06 10:57:07 +00:00
parent 2c33d65824
commit 058e0739af

View File

@@ -53,8 +53,9 @@ export default defineConfig(({ mode }) => {
) { ) {
plugins.push( plugins.push(
sentryVitePlugin({ sentryVitePlugin({
include: "./dist", release: {
release: process.env.VITE_APP_VERSION, name: process.env.VITE_APP_VERSION,
},
}), }),
); );
} }