Skip to content

Commit dcd885a

Browse files
committed
fix: always try parse asset manifest in production
1 parent b0421db commit dcd885a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/ultra.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export class UltraServer extends Hono {
4040
* Parse the provided asset manifest if we have an entrypoint
4141
*/
4242
const assetManifest: [string, string][] | undefined =
43-
this.mode === "production" && this.entrypoint
43+
this.mode === "production"
4444
? await this.#parseJsonFile(this.assetManifestPath)
4545
: undefined;
4646

0 commit comments

Comments
 (0)