mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
08534699e7
* Down with hardcoded slugs * Type the error modal * Set username * Update * Update * add username * Revert .flowconfig * Address comments * Simplify Co-authored-by: Gregory Schier <gschier1990@gmail.com>
8 lines
215 B
JavaScript
8 lines
215 B
JavaScript
// @flow
|
|
function insomniaDocs(slug: string): string {
|
|
return `https://support.insomnia.rest${slug}`;
|
|
}
|
|
|
|
export const docsBase = insomniaDocs('/');
|
|
export const docsGitSync = insomniaDocs('/article/96-git-sync');
|