Skip to content

Commit f5f4929

Browse files
committed
lint fix
1 parent bd6f679 commit f5f4929

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

docs/components/Snippet.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
<template>
2-
<pre class="Snippet" v-html="html" />
2+
<pre
3+
class="Snippet"
4+
v-html="html"
5+
/>
36
</template>
47

58
<script setup lang="ts">

docs/nuxt.config.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ export default defineNuxtConfig({
99
'~/assets/css/terminal.css',
1010
'~/assets/css/shiki.css',
1111
],
12+
13+
routeRules: {
14+
'/usage/playground': {
15+
redirect: '/playground',
16+
},
17+
},
1218
compatibilityDate: '2024-10-24',
1319

1420
nitro: {
@@ -31,10 +37,4 @@ export default defineNuxtConfig({
3137
},
3238
],
3339
},
34-
35-
routeRules: {
36-
'/usage/playground': {
37-
redirect: '/playground'
38-
}
39-
}
4040
})

0 commit comments

Comments
 (0)