mirror of
https://github.com/Lissy93/dashy.git
synced 2025-07-08 22:34:54 +02:00
11 lines
224 B
JavaScript
11 lines
224 B
JavaScript
/**
|
|
* Gets the configuration from conf.yml
|
|
*/
|
|
const fs = require('fs');
|
|
const yaml = require('js-yaml');
|
|
|
|
module.exports = () => {
|
|
const conf = yaml.load(fs.readFileSync('./public/conf.yml', 'utf-8'));
|
|
return conf;
|
|
};
|