main
js 18 lines 488 Bytes
Raw
1 /**
2 * Copyright (c) Meta Platforms, Inc. and affiliates.
3 *
4 * This source code is licensed under the MIT license found in the
5 * LICENSE file in the root directory of this source tree.
6 *
7 */
8
9 // Tweak these to play with different kinds of latency.
10
11 // How long the data fetches on the server.
12 exports.API_DELAY = 2000;
13
14 // How long the server waits for data before giving up.
15 exports.ABORT_DELAY = 10000;
16
17 // How long serving the JS bundles is delayed.
18 exports.JS_BUNDLE_DELAY = 4000;