mirror of
https://github.com/langgenius/dify.git
synced 2026-03-27 01:00:13 +08:00
8 lines
258 B
TypeScript
8 lines
258 B
TypeScript
import path from 'node:path'
|
|
|
|
export const rootClientInjectTargetRelativePath = 'instrumentation-client.ts'
|
|
|
|
export const getRootClientInjectTarget = (projectRoot: string): string => {
|
|
return path.resolve(projectRoot, rootClientInjectTargetRelativePath)
|
|
}
|