-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpluginConfigs.ts
29 lines (27 loc) · 1.14 KB
/
pluginConfigs.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
export const TelegramGitNotifierPackageConfig = {
id: 'telegram-git-notifier',
path: './repos/telegram-git-notifier-docs',
routeBasePath: 'telegram-git-notifier',
sidebarPath: require.resolve(`./repos/telegram-git-notifier-docs/sidebar.ts`),
editUrl: ({ docPath }) => `https://github.com/cslant/telegram-git-notifier-docs/edit/main/${docPath}`,
showLastUpdateAuthor: true,
showLastUpdateTime: true,
};
export const LaravelLikePackageConfig = {
id: 'laravel-like',
path: './repos/laravel-like-docs',
routeBasePath: 'laravel-like',
sidebarPath: require.resolve('./repos/laravel-like-docs/sidebar.ts'),
editUrl: ({ docPath }) => `https://github.com/cslant/laravel-like-docs/edit/main/${docPath}`,
showLastUpdateAuthor: true,
showLastUpdateTime: true,
};
export const GithubProjectPHPConfig = {
id: 'github-project-php',
path: './repos/github-project-php-docs',
routeBasePath: 'github-project-php',
sidebarPath: require.resolve('./repos/github-project-php-docs/sidebar.ts'),
editUrl: ({ docPath }) => `https://github.com/cslant/github-project-php-docs/edit/main/${docPath}`,
showLastUpdateAuthor: true,
showLastUpdateTime: true,
};