mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
* feat(analytics): upload web source maps to Sentry + tie release to build Web crash reports were unusable: the bundle ships minified with no source maps uploaded, and every build reported as the frozen APP_VERSION, so a Sentry error showed an unreadable stack under a single release. - Add @sentry/vite-plugin: emit hidden source maps and upload them by debug id when SENTRY_AUTH_TOKEN is present (published Docker build only), then delete the maps so they never ship. No-op for dev and the source archive. - Set the Sentry release from SENTRY_RELEASE / VITE_SENTRY_RELEASE (the Docker build passes the release version), falling back to APP_VERSION. - Relax beforeSend so app bundle frames keep a host-stripped path (Sentry needs it to match the uploaded map) while the instance hostname, error message, and PII stay stripped. Filesystem paths still collapse to the basename. - Wire the Dockerfile (sentry_auth_token build secret + SENTRY_RELEASE arg/env) and the release docker job. * fix(analytics): point source map upload at the snapotter org (project node)
69 lines
2.2 KiB
TypeScript
69 lines
2.2 KiB
TypeScript
import path from "node:path";
|
|
import { sentryVitePlugin } from "@sentry/vite-plugin";
|
|
import tailwindcss from "@tailwindcss/vite";
|
|
import react from "@vitejs/plugin-react";
|
|
import { defineConfig } from "vite";
|
|
|
|
// Source maps are emitted and uploaded to Sentry only when the build supplies
|
|
// SENTRY_AUTH_TOKEN (the published Docker image does; dev and the source-archive
|
|
// build do not). Debug IDs tie each build's bundle to its own maps, so upload
|
|
// works regardless of release. Maps are deleted after upload so they never ship.
|
|
const sentryAuthToken = process.env.SENTRY_AUTH_TOKEN;
|
|
const sentryRelease = process.env.SENTRY_RELEASE;
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
react(),
|
|
tailwindcss(),
|
|
// Must come after the other plugins so it sees the final bundle.
|
|
sentryVitePlugin({
|
|
org: "snapotter",
|
|
project: "node",
|
|
authToken: sentryAuthToken,
|
|
telemetry: false,
|
|
disable: !sentryAuthToken,
|
|
applicationKey: "snapotter-web",
|
|
// Don't inject the release into the bundle; the SDK reads it explicitly
|
|
// from VITE_SENTRY_RELEASE so there is a single source of truth.
|
|
release: { name: sentryRelease, inject: false },
|
|
sourcemaps: { filesToDeleteAfterUpload: ["./dist/**/*.map"] },
|
|
}),
|
|
],
|
|
resolve: {
|
|
alias: {
|
|
"@": path.resolve(__dirname, "./src"),
|
|
},
|
|
dedupe: ["react", "react-dom"],
|
|
},
|
|
server: {
|
|
host: true,
|
|
port: Number(process.env.PORT) || 1351,
|
|
proxy: {
|
|
"/api": {
|
|
target: process.env.VITE_API_URL || "http://localhost:13490",
|
|
timeout: 300_000,
|
|
proxyTimeout: 300_000,
|
|
},
|
|
},
|
|
},
|
|
// vite preview serves the production build for e2e runs; it needs the same
|
|
// /api proxy the dev server has (the app always calls relative /api).
|
|
preview: {
|
|
host: true,
|
|
port: Number(process.env.PORT) || 1351,
|
|
proxy: {
|
|
"/api": {
|
|
target: process.env.VITE_API_URL || "http://localhost:13490",
|
|
timeout: 300_000,
|
|
proxyTimeout: 300_000,
|
|
},
|
|
},
|
|
},
|
|
build: {
|
|
// Hidden source maps: generated for upload but not referenced from the
|
|
// shipped JS, so browsers never fetch them. Off entirely when not uploading.
|
|
sourcemap: sentryAuthToken ? "hidden" : false,
|
|
rollupOptions: {},
|
|
},
|
|
});
|