Skip to content

Commit

Permalink
Fix website build
Browse files Browse the repository at this point in the history
  • Loading branch information
samwillis committed Aug 11, 2024
1 parent d5fe20e commit 2fe1225
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions docs/repl/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,13 @@ pageClass: page-repl-playground
---

<script setup>
import ReplPlayground from "./ReplPlayground.vue";
import { defineClientComponent } from 'vitepress'

const ReplPlayground = defineClientComponent(() => {
return import('./ReplPlayground.vue')
})
</script>

<ReplPlayground />
<ClientOnly>
<ReplPlayground />
</ClientOnly>

0 comments on commit 2fe1225

Please sign in to comment.