diff --git a/contributors.yml b/contributors.yml index 5cee401cdab..09c6d7dc355 100644 --- a/contributors.yml +++ b/contributors.yml @@ -199,6 +199,7 @@ - Hopsken - houmark - humphd +- huw - huyb1991 - hzhu - harshmangalam diff --git a/templates/cloudflare-workers/server.ts b/templates/cloudflare-workers/server.ts index d80fdf4cd2c..7408ed39813 100644 --- a/templates/cloudflare-workers/server.ts +++ b/templates/cloudflare-workers/server.ts @@ -7,7 +7,7 @@ import __STATIC_CONTENT_MANIFEST from "__STATIC_CONTENT_MANIFEST"; const MANIFEST = JSON.parse(__STATIC_CONTENT_MANIFEST); const handleRemixRequest = createRequestHandler(build, process.env.NODE_ENV); -if (build.dev) { +if (process.env.NODE_ENV === "development") { logDevReady(build); }