Skip to content

Commit

Permalink
Fix path to explorer frontend runtime config (#1354)
Browse files Browse the repository at this point in the history
  • Loading branch information
ukorvl authored Dec 5, 2024
2 parents 6c7e741 + aa1261e commit 5d2978b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions explorer_frontend/public/readRuntimeConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ function loadConfig() {
var config = {};
var localConfig = {};

var configToml = fetchTomlFileSync("./runtime-config.toml");
var localConfigToml = fetchTomlFileSync("./runtime-config.local.toml");
var configToml = fetchTomlFileSync("/runtime-config.toml");
var localConfigToml = fetchTomlFileSync("/runtime-config.local.toml");

if (configToml) {
config = safeParseToml(configToml);
Expand Down

0 comments on commit 5d2978b

Please sign in to comment.