Skip to content

Commit

Permalink
chore: remove unnecessary type
Browse files Browse the repository at this point in the history
  • Loading branch information
farnabaz committed Dec 23, 2022
1 parent e5adea9 commit be7a5fd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/runtime/plugins/documentDriven.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
import type { RouteLocationNormalized, RouteLocationNormalizedLoaded } from 'vue-router'
// @ts-ignore
import { useRuntimeConfig, addRouteMiddleware, callWithNuxt, navigateTo } from '#app'
import type { NuxtApp } from 'nuxt/app'
import { withoutTrailingSlash, hasProtocol } from 'ufo'
import { NavItem, ParsedContent } from '../types'
// @ts-ignore
import { defineNuxtPlugin, queryContent, useContentHelpers, useContentState, fetchContentNavigation, useRoute } from '#imports'
// @ts-ignore
import layouts from '#build/layouts'

export default defineNuxtPlugin((nuxt: NuxtApp) => {
export default defineNuxtPlugin((nuxt) => {
const { documentDriven: moduleOptions, experimental } = useRuntimeConfig()?.public?.content

/**
Expand Down

0 comments on commit be7a5fd

Please sign in to comment.