1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-26 03:25:23 -04:00
jarv.is/instrumentation.ts
2025-04-10 20:23:34 -04:00

10 lines
190 B
TypeScript

import { registerOTel } from "@vercel/otel";
export const register = () => {
if (process.env.VERCEL_ENV === "production") {
registerOTel({
serviceName: "jarvis",
});
}
};