about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authordan <dan.abramov@gmail.com>2024-03-08 04:13:36 +0000
committerGitHub <noreply@github.com>2024-03-08 04:13:36 +0000
commitc8e0fa9c97d276a917996627f163c267783e9411 (patch)
treefe986ba203db59a0f58b10b13f8416e04a1f0d29 /src
parent1cf49517b517e8bee90bf937d033dff35cc9f690 (diff)
downloadvoidsky-c8e0fa9c97d276a917996627f163c267783e9411.tar.zst
Mark bundle start time on web (#3147)
* Mark bundle start time on web

* TS
Diffstat (limited to 'src')
-rw-r--r--src/platform/markBundleStartTime.web.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/platform/markBundleStartTime.web.ts b/src/platform/markBundleStartTime.web.ts
new file mode 100644
index 000000000..cd64c9f1c
--- /dev/null
+++ b/src/platform/markBundleStartTime.web.ts
@@ -0,0 +1,2 @@
+// @ts-ignore Web-only. On RN, this is set by Metro.
+window.__BUNDLE_START_TIME__ = performance.now()