Bugfix: SSR bundler errors fixed. Caching still faulty

This commit is contained in:
2026-04-09 22:33:49 +01:00
parent f3b087a1f3
commit 40fc7778a8
12 changed files with 139 additions and 81 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ export default async function grabPageServerRes({ url, query, routeParams, serve
query,
};
try {
if (routeParams) {
if (routeParams && server_function) {
const serverData = await server_function({
...routeParams,
query: { ...routeParams.query, ...query },