diff --git a/src/utils.ts b/src/utils.ts index b8620e8..53fdb42 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -80,7 +80,7 @@ export const problemDescription = (problem: Problem): string => { // ══════════════════════════════════════════════════════════════════════════════════════════════════════════════════ export const publicPath = (...paths: string[]): string => { - return path.join(__dirname, '../..', 'public', ...paths) + return path.join(__dirname, '..', '..', 'public', ...paths) } export const readPackageProperties = (pathProject: string): any | undefined => {