mirror of
https://github.com/DayuanJiang/next-ai-draw-io.git
synced 2026-01-02 22:32:27 +08:00
10 lines
231 B
TypeScript
10 lines
231 B
TypeScript
|
|
import { registerOTel } from '@vercel/otel';
|
||
|
|
import { LangfuseExporter } from 'langfuse-vercel';
|
||
|
|
|
||
|
|
export function register() {
|
||
|
|
registerOTel({
|
||
|
|
serviceName: 'next-ai-draw-io',
|
||
|
|
traceExporter: new LangfuseExporter(),
|
||
|
|
});
|
||
|
|
}
|