We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c0f95a commit f668ba9Copy full SHA for f668ba9
src/config.js
@@ -55,8 +55,11 @@ export async function resolveConfig(ctx, overrides = {}) {
55
confMap = await ctx.storage.get(siteKey, 'json');
56
} else {
57
const res = await ffetch(`https://main--${site}--${org}.aem.page/config.json`);
58
- if (res.status === 404) {
59
- throw errorWithResponse(404, 'config not found');
+ if (!res.ok) {
+ if (res.status === 404) {
60
+ throw errorWithResponse(404, 'config not found');
61
+ }
62
+ throw errorWithResponse(500, 'config fetch failed');
63
}
64
const json = await res.json();
65
confMap = json.public?.mixerConfig;
0 commit comments