We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff29999 commit 0b2110cCopy full SHA for 0b2110c
@bellatrix/core/src/settings/BellatrixSettings.ts
@@ -4,6 +4,6 @@ export class BellatrixSettings {
4
private static _config: BellatrixConfiguration = JSON.parse(process.env.BELLATRIX_CONFIGURAITON!);
5
6
public static get<T extends BellatrixConfiguration>(): T {
7
- return this._config as T;
+ return { ...this._config} as T;
8
}
9
0 commit comments