## What this fixes
Using createClientWithManualPoll from the ConfigCat JS SDK (v5.4.3), every getValue/getAllValues call fails with "ERROR - config.json is not present. Returning default value". The plain createClient works, but the reporter does not want any polling. Manual poll mode never downloads the config on its own, so there is nothing to evaluate against.
## The fix
In manual poll mode you must call forceRefresh() at least once to download config.json before evaluating, or switch to lazy loading mode, which downloads the config on each getValue call when the cache is empty or expired (configurable via cacheTimeToLiveSeconds). The reporter confirmed the lazy loading approach worked. Use manual polling only when you want full control over when downloads happen, and remember that nothing is fetched automatically.
Source: https://github.com/configcat/js-sdk/issues/34
## Why it happens
The thread above nails the cause, so the fix addresses that directly rather than symptoms. Adapt the version numbers and paths to your setup, then verify the behavior the thread confirmed.
## Source
https://github.com/configcat/js-sdk/issues/34