fix: wrong url in sentry vite plugin

This commit is contained in:
2024-03-25 13:24:25 +08:00
parent fac90c4a9c
commit 7a5242f1e3

View File

@@ -5,11 +5,14 @@ import react from "@vitejs/plugin-react";
import { defineConfig } from "vite";
export default defineConfig({
plugins: [react(), sentryVitePlugin({
org: "sentry",
project: "ds-viewer",
url: "https://sentry.yoshino-s.xyz/"
})],
plugins: [
react(),
sentryVitePlugin({
org: "sentry",
project: "ds-viewer",
url: "https://sentry.yoshino-s.xyz",
}),
],
resolve: {
alias: {
@@ -18,6 +21,6 @@ export default defineConfig({
},
build: {
sourcemap: true
}
sourcemap: true,
},
});