File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ ### Fixed
11+ - Fixed loadConfig import in resolveEnvOverrides [ #802 ] ( https://github.com/sourcebot-dev/sourcebot/pull/802 )
12+
1013## [ 4.10.18] - 2026-01-28
1114
1215### Added
Original file line number Diff line number Diff line change 1515 console . warn = ( ) => { } ;
1616 // console.error = () => {}; // Keep errors
1717
18- const { loadConfig } = await import ( "../src/utils.js" ) ;
19- const { resolveEnvironmentVariableOverridesFromConfig } = await import ( "../src/env.server.js" ) ;
18+ const { loadConfig, resolveEnvironmentVariableOverridesFromConfig } = await import ( "../src/env.server.js" ) ;
2019
2120 const config = await loadConfig ( process . env . CONFIG_PATH ) ;
2221 const overrides = await resolveEnvironmentVariableOverridesFromConfig ( config ) ;
You can’t perform that action at this time.
0 commit comments