mirror of
https://github.com/ajnart/homarr.git
synced 2026-05-27 21:01:40 +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',
|
|
},
|
|
});
|