Skip to content

Commit

Permalink
Refactor typedocHelpers to fix file path in getFilePathToPackage func…
Browse files Browse the repository at this point in the history
…tion
  • Loading branch information
Adammatthiesen committed Dec 14, 2024
1 parent 8f2e768 commit e3db1b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/typedocHelpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import type { StarlightTypeDocOptions } from 'starlight-typedoc';

// Utility function to create TypeDoc related paths
export function getFilePathToPackage(name: string, path: string) {
return `../../packages/${name}/${path}`;
return `../packages/${name}/${path}`;
}

// Utility function to create TypeDoc options for the StudioCMS packages so that each package documentation is the same when generated
Expand Down

0 comments on commit e3db1b7

Please sign in to comment.