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 84b8c26 commit cc316bcCopy full SHA for cc316bc
.changeset/five-rooms-draw.md
@@ -0,0 +1,5 @@
1
+---
2
+'@sveltejs/kit': patch
3
4
+
5
+fix: consistently use bare import for internals
packages/kit/src/runtime/app/paths/server.js
@@ -1,6 +1,6 @@
import { base, assets, relative } from './internal/server.js';
import { resolve_route } from '../../../utils/routing.js';
-import { get_request_store } from '../../../exports/internal/server.js'; // TODO not sure why we can't use `@sveltejs/kit/internal/server` here
+import { get_request_store } from '@sveltejs/kit/internal/server';
/** @type {import('./client.js').asset} */
6
export function asset(file) {
0 commit comments