twenty / packages /twenty-server /src /utils /resolve-absolute-path.ts
Jules
Initial clean CRM deployment with prebuilt assets
d9494a5
Raw
History Blame Contribute Delete
133 Bytes
export const resolveAbsolutePath = (path: string): string => {
return path.startsWith('/') ? path : process.cwd() + '/' + path;
};