@certik/skynet 0.10.33 → 0.10.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1 -1
- package/app.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/app.js
CHANGED
|
@@ -608,9 +608,9 @@ function api({ name, routes, serve, beforeListen, env = {}, region = "us-east-1"
|
|
|
608
608
|
const check = {
|
|
609
609
|
func: async () => {
|
|
610
610
|
const errors = [];
|
|
611
|
+
const url = `http://localhost:9999${serve.prefix}/`;
|
|
611
612
|
|
|
612
613
|
try {
|
|
613
|
-
const url = `http://localhost:9999${serve.prefix}/`;
|
|
614
614
|
const res = await fetch(url);
|
|
615
615
|
|
|
616
616
|
if (!res.ok) {
|