mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-21 22:17:00 +01:00
5 lines
150 B
TypeScript
5 lines
150 B
TypeScript
import path from 'path';
|
|
|
|
export const generateConfigPath = (configName: string) =>
|
|
path.join(process.cwd(), 'data/configs', `${configName}.json`);
|