mirror of
https://github.com/ajnart/homarr.git
synced 2026-07-10 17:22:39 +02:00
9 lines
200 B
TypeScript
9 lines
200 B
TypeScript
import defaultConfig from '../../../data/configs/default.json';
|
|
|
|
export const getFallbackConfig = (name?: string) => ({
|
|
...defaultConfig,
|
|
configProperties: {
|
|
name: name ?? 'default',
|
|
},
|
|
});
|