Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonkuhrt committed Sep 17, 2024
1 parent dd59ddf commit c77bc2d
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ tsconfig.vitest-temp.json
website/.vitepress/dist
website/.vitepress/cache
legacy
.vitepress
3 changes: 3 additions & 0 deletions website/.vitepress/theme/components/GeneratedClientBadge.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<template>
<Badge text="generated client" />
</template>
File renamed without changes.
4 changes: 2 additions & 2 deletions website/.vitepress/theme/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import type { EnhanceAppContext } from 'vitepress'
import { enhanceAppWithTabs } from 'vitepress-plugin-tabs/client'
import DefaultTheme from 'vitepress/theme'
import './custom.css'
import GeneratedClientBadge from './GeneratedClientBadge.vue'
import MyLayout from './MyLayout.vue'
import GeneratedClientBadge from './components/GeneratedClientBadge.vue'
import MyLayout from './components/MyLayout.vue'

// Imports for Twoslash
import TwoslashFloatingVue from '@shikijs/vitepress-twoslash/client'
Expand Down
2 changes: 1 addition & 1 deletion website/content/guides/10_getting-started/10_static.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Static
---

# Getting Started <Badge text="Static Client" />
# Getting Started

## Install Package

Expand Down
2 changes: 1 addition & 1 deletion website/content/guides/10_getting-started/20_generated.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Generated <GeneratedClientBadge />
---

# Getting Started <Badge text="generated client" />
# Getting Started <GeneratedClientBadge />

The following takes you through a simple example to demonstrate how generation works and what it gives you.

Expand Down

0 comments on commit c77bc2d

Please sign in to comment.