Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,3 @@
.DS_Store
target/
pom.xml.versionsBackup

website/translated_docs
website/build/
website/node_modules
website/i18n/*
4 changes: 4 additions & 0 deletions website/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
translated_docs/
build/
node_modules/
i18n/*
2 changes: 1 addition & 1 deletion website/.nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
stable
12
11 changes: 9 additions & 2 deletions website/siteConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,16 @@ const siteConfig = {
// You may provide arbitrary config keys to be used as needed by your
// template. For example, if you need your repo's URL...
repoUrl: 'https://github.com/ExpediaGroup/graphql-kotlin',

// URL for editing docs, usage example: editUrl + 'en/doc1.md'
editUrl: 'https://github.com/ExpediaGroup/graphql-kotlin/tree/master/docs/'
editUrl: 'https://github.com/ExpediaGroup/graphql-kotlin/tree/master/docs/',

// Docusaurus search config - https://docusaurus.io/docs/en/search
// Algolia search index - https://github.com/algolia/docsearch-configs/blob/master/configs/graphql-kotlin.json
algolia: {
apiKey: 'b23761059e66eefd46f5f665a2d4537a',
indexName: 'graphql-kotlin'
}
};

module.exports = siteConfig;