8000 refactor: use export from `#internal/nitro` directly · nuxt/nuxt@a79c82a · GitHub
[go: up one dir, main page]

Skip to content

Commit a79c82a

Browse files
committed
refactor: use export from #internal/nitro directly
1 parent 697c2b4 commit a79c82a

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

packages/nuxt/src/core/runtime/nitro/renderer.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ import { hash } from 'ohash'
1919
import { renderSSRHead } from '@unhead/ssr'
2020
import type { HeadEntryOptions } from '@unhead/schema'
2121

22-
import { defineRenderHandler, getRouteRules, useRuntimeConfig, useStorage } from '#internal/nitro'
23-
import { useNitroApp } from '#internal/nitro/app'
22+
import { defineRenderHandler, getRouteRules, useNitroApp, useRuntimeConfig, useStorage } from '#internal/nitro'
2423

2524
import type { Link, Script } from '@unhead/vue'
2625
import { createServerHead } from '@unhead/vue'

tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
"#internal/nitro": [
2727
"./node_modules/nitropack/dist/runtime"
2828
],
29-
"#internal/nitro/*": [
30-
"./node_modules/nitropack/dist/runtime/*"
29+
"#internal/nitro/utils": [
30+
"./node_modules/nitropack/dist/runtime/utils"
3131
],
3232
"#vue-router": [
3333
"./node_modules/vue-router"

0 commit comments

Comments
 (0)
0