Skip to content

Commit c7e8a19

Browse files
fix: Update Dependabot configuration and feed sources in config.json
1 parent 1f08481 commit c7e8a19

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"scripts": {
77
"start": "node src/aggregator.js",
88
"dev": "node src/aggregator.js",
9+
"serve": "npx serve . -l 3000",
910
"build": "echo 'No build step required for this project'",
1011
"test": "node --test",
1112
"precommit:check": "node scripts/pre-commit-checks.js"

readme-viewer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1671,7 +1671,7 @@ <h4 id="prefReadTitle">Reading</h4>
16711671
});
16721672

16731673
const fetchWithTimeout = async (resource, options = {}) => {
1674-
const { timeout = 2000 } = options;
1674+
const { timeout = 8000 } = options;
16751675
const controller = new AbortController();
16761676
const id = setTimeout(() => controller.abort(), timeout);
16771677
const response = await fetch(resource, { ...options, signal: controller.signal });

0 commit comments

Comments
 (0)