Skip to content

Commit

Permalink
Force admin config
Browse files Browse the repository at this point in the history
  • Loading branch information
keianhzo committed May 10, 2024
1 parent 7ef3896 commit 4be2308
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/utils/configs.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,13 @@ if (window.APP_CONFIG) {
}
} else {
configs.APP_CONFIG = {
features: {}
};
}

configs.APP_CONFIG = {
...configs.APP_CONFIG,
...{
features: {
bitecs_loader: true,
addons_config: {
Expand All @@ -75,8 +82,8 @@ if (window.APP_CONFIG) {
"hubs-duck-addon": { enabled: true }
}
}
};
}
}
};

const isLocalDevelopment = process.env.NODE_ENV === "development";

Expand Down

0 comments on commit 4be2308

Please sign in to comment.