mirror of
https://github.com/SomboChea/ui
synced 2024-11-05 14:14:26 +07:00
6 lines
149 B
JavaScript
6 lines
149 B
JavaScript
import path from 'path';
|
|
|
|
export const parseConfigurationFile = (name) => {
|
|
return path.join(__dirname, `./partials/config/yaml/${name}.yaml`);
|
|
};
|