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 714bafc commit 761cb2bCopy full SHA for 761cb2b
packages/kit/test/apps/basics/src/routes/load/static-file-with-hash/+page.js
@@ -1,6 +1,6 @@
1
/** @type {import('./$types').PageLoad} */
2
export async function load({ fetch }) {
3
- // @ts-expect-error, path does not exist what is this??
+ // @ts-ignore, path does not exist what is this??
4
const res = await fetch('/load/assets/a#b.txt');
5
return {
6
status: res.status
packages/kit/test/apps/options/source/pages/server-fetch-invalidate/+page.server.js
// TODO 2.0: Delete
/** @type {import('./$types').PageServerLoad} */
- const res = await fetch('/server-fetch-invalidate/count.json');
+ const res = await fetch('/paths-base/server-fetch-invalidate/count.json');
return res.json();
}
0 commit comments