Skip to content

Commit

Permalink
docs: jump to installation by default
Browse files Browse the repository at this point in the history
  • Loading branch information
crimx committed Jul 21, 2020
1 parent c0f6f4d commit d61d505
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/.vuepress/config.js
Expand Up @@ -19,7 +19,7 @@ module.exports = {
locales: {
'/': {
nav: [
{ text: 'Guide', link: '/guide/core-concepts' },
{ text: 'Guide', link: '/guide/' },
{ text: 'API', link: '/api/' },
{ text: 'Examples', link: '/examples/' }
],
Expand Down Expand Up @@ -51,7 +51,7 @@ module.exports = {
title: 'Guide', // required
collapsable: false, // optional, defaults to true
sidebarDepth: 2, // optional, defaults to 1
children: ['/guide/core-concepts', '/guide/motivation', '/guide/']
children: ['/guide/', '/guide/core-concepts', '/guide/motivation']
},
{
title: 'Advanced', // required
Expand Down
2 changes: 1 addition & 1 deletion docs/README.md
Expand Up @@ -4,7 +4,7 @@ heroImage: /logo.png
heroText:
tagline: React hooks for RxJS Observables.
actionText: Get Started →
actionLink: /guide/core-concepts.html
actionLink: /guide/
features:
- title: 💫Seamless Integration
details: Concurrent mode safe. Props, state, context and Observables can be nicely converted to each other with pure function. No `tap` hack needed. Supports Render-as-You-Fetch pattern with React Suspense.
Expand Down

0 comments on commit d61d505

Please sign in to comment.