We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5995da8 commit 38c30edCopy full SHA for 38c30ed
2 files changed
src/js/app-navigator/worker.js
@@ -0,0 +1,9 @@
1
+export default {
2
+ async fetch(request) {
3
+ const urlObject = new URL(request.url);
4
+
5
+ urlObject.hostname = 'benchmark.bitrise.io';
6
7
+ return fetch(urlObject);
8
+ },
9
+};
src/js/app-navigator/wrangler.toml
@@ -0,0 +1,6 @@
+name = "app-navigator"
+main = "./worker.js"
+compatibility_date = "2026-03-10"
+route = "bitrise.io/resources/tools/app-navigator*"
+no_bundle = true
+workers_dev = true
0 commit comments