Skip to content

Commit d0ae23f

Browse files
committed
Explicit typing seems to be neccessary to build
1 parent a0dd809 commit d0ae23f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/config/config.server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ const overrideWithConfig = (config: Config, pathToConfig: string) => {
121121
try {
122122
console.log(`Overriding app config with ${pathToConfig}`);
123123
const externalConfig = readFileSync(pathToConfig, 'utf8');
124-
mergeConfig(config, load(externalConfig));
124+
mergeConfig(config, load(externalConfig) as AppConfig);
125125
} catch (err) {
126126
console.error(err);
127127
}

0 commit comments

Comments
 (0)