1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00

docs: group sdks into non-collapsible categories: server and client

This commit is contained in:
Thomas Heartman 2022-01-13 09:21:13 +01:00
parent 4a5b332567
commit b8f3313ae2

View File

@ -30,18 +30,36 @@ module.exports = {
'Unleash SDKs': [
'sdks/index',
'sdks/unleash-proxy',
'sdks/dot_net_sdk',
'sdks/android_proxy_sdk',
'sdks/go_sdk',
'sdks/proxy-ios',
'sdks/java_sdk',
'sdks/proxy-javascript',
'sdks/node_sdk',
'sdks/php_sdk',
'sdks/python_sdk',
'sdks/proxy-react',
'sdks/ruby_sdk',
{ type: 'link', label: 'Community SDKs', href: '/sdks#community-sdks'}
{
type: 'category',
collapsible: false,
label: 'Server-side SDKs',
items: [
'sdks/go_sdk',
'sdks/java_sdk',
'sdks/node_sdk',
'sdks/php_sdk',
'sdks/python_sdk',
'sdks/ruby_sdk',
'sdks/dot_net_sdk',
],
},
{
type: 'category',
collapsible: false,
label: 'Client-side SDKs',
items: [
'sdks/android_proxy_sdk',
'sdks/proxy-ios',
'sdks/proxy-javascript',
'sdks/proxy-react',
],
},
{
type: 'link',
label: 'Community SDKs',
href: '/sdks#community-sdks',
},
],
Addons: [
'addons/index',