We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd6f679 commit f5f4929Copy full SHA for f5f4929
docs/components/Snippet.vue
@@ -1,5 +1,8 @@
1
<template>
2
- <pre class="Snippet" v-html="html" />
+ <pre
3
+ class="Snippet"
4
+ v-html="html"
5
+ />
6
</template>
7
8
<script setup lang="ts">
docs/nuxt.config.ts
@@ -9,6 +9,12 @@ export default defineNuxtConfig({
9
'~/assets/css/terminal.css',
10
'~/assets/css/shiki.css',
11
],
12
+
13
+ routeRules: {
14
+ '/usage/playground': {
15
+ redirect: '/playground',
16
+ },
17
18
compatibilityDate: '2024-10-24',
19
20
nitro: {
@@ -31,10 +37,4 @@ export default defineNuxtConfig({
31
37
},
32
38
33
39
34
-
35
- routeRules: {
36
- '/usage/playground': {
- redirect: '/playground'
- }
40
})
0 commit comments