docs: remove /dev switch

This commit is contained in:
Benjamin Canac
2024-09-25 12:18:02 +02:00
parent 39b85f11d8
commit a9339ccf2a
18 changed files with 53 additions and 195 deletions

View File

@@ -39,7 +39,6 @@
import { withoutTrailingSlash } from 'ufo'
const route = useRoute()
const { branch } = useContentSource()
definePageMeta({
layout: 'docs'
@@ -54,9 +53,6 @@ const { data: surround } = await useAsyncData(`${route.path}-surround`, () => {
return queryContent()
.where({
_extension: 'md',
_path: {
[branch.value?.name === 'dev' ? '$eq' : '$ne']: new RegExp('^/dev')
},
navigation: {
$ne: false
}
@@ -82,7 +78,7 @@ defineOgImageComponent('Docs', {
const communityLinks = computed(() => [{
icon: 'i-heroicons-pencil-square',
label: 'Edit this page',
to: `https://github.com/nuxt/ui/edit/dev/docs/content/${branch.value?.name === 'dev' ? page?.value?._file.split('/').slice(1).join('/') : page?.value?._file}`,
to: `https://github.com/nuxt/ui/edit/dev/docs/content/${page?.value?._file}`,
target: '_blank'
}, {
icon: 'i-heroicons-star',

View File

@@ -413,7 +413,7 @@ import type { ParsedContent, NavItem } from '@nuxt/content'
import { useElementBounding, useWindowScroll, useElementSize, breakpointsTailwind, useBreakpoints } from '@vueuse/core'
import type { HomeProBlock } from '~/types'
const { data: page } = await useAsyncData('index', () => queryContent('/dev').findOne())
const { data: page } = await useAsyncData('index', () => queryContent('/').findOne())
const { data: module } = await useFetch<{
stats: {
downloads: number

View File

@@ -36,7 +36,7 @@
<script setup lang="ts">
import { eachDayOfInterval, isSameDay, isToday } from 'date-fns'
const { data: page } = await useAsyncData('releases', () => queryContent('/dev/releases').findOne())
const { data: page } = await useAsyncData('releases', () => queryContent('/releases').findOne())
if (!page.value) {
throw createError({ statusCode: 404, statusMessage: 'Page not found', fatal: true })
}