Skip to content

Commit

Permalink
patch(ux): avoid standlone file read errs (#64)
Browse files Browse the repository at this point in the history
* patch: use production standlone for patch

* chore

* v

* revert

* ux

* add runframe as dep on setup

* chore

* Update setup-tsci-packages.ts

* Update createHttpServer.ts
  • Loading branch information
ArnavK-09 authored Feb 14, 2025
1 parent c5c668f commit f45bc1e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/server/createHttpServer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ export const createHttpServer = async (port = 3020) => {
res.end(content)
return
} catch (error) {
console.error("Error serving standalone.min.js:", error)
console.info(
"Local runframe standalone not found, falling back to the production version.",
)
}

res.writeHead(302, {
Expand Down

0 comments on commit f45bc1e

Please sign in to comment.