mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 03:25:23 -04:00
10 lines
190 B
TypeScript
10 lines
190 B
TypeScript
import { registerOTel } from "@vercel/otel";
|
|
|
|
export const register = () => {
|
|
if (process.env.VERCEL_ENV === "production") {
|
|
registerOTel({
|
|
serviceName: "jarvis",
|
|
});
|
|
}
|
|
};
|