Skip to content

Commit aa29938

Browse files
authored
fix(server): don't warn about manifest in dev (#7563)
1 parent eb0caea commit aa29938

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/qwik/src/server/render.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ export async function renderToStream(
121121
}
122122
}
123123

124-
if (!resolvedManifest) {
124+
if (!resolvedManifest && !isDev) {
125125
console.warn(
126126
`Missing client manifest, loading symbols in the client might 404. Please ensure the client build has run and generated the manifest for the server build.`
127127
);

0 commit comments

Comments
 (0)