mirror of
https://github.com/glenndehaan/unifi-voucher-site.git
synced 2026-03-31 06:24:00 -04:00
7 lines
203 B
JavaScript
7 lines
203 B
JavaScript
const fs = require("fs");
|
|
const path = `${__dirname}/../../../public/dist`;
|
|
|
|
module.exports = () => {
|
|
return JSON.parse(fs.existsSync(path) ? fs.readFileSync(`${path}/rev-manifest.json`) : "{}");
|
|
};
|