Files
Homarr/src/tools/config/getFallbackConfig.ts
2023-01-08 15:48:39 +09:00

9 lines
200 B
TypeScript

import defaultConfig from '../../../data/configs/default.json';
export const getFallbackConfig = (name?: string) => ({
...defaultConfig,
configProperties: {
name: name ?? 'default',
},
});