mirror of
https://github.com/karl0ss/homepage.git
synced 2025-05-02 13:33:40 +01:00
Use buildtime in config hash
This commit is contained in:
parent
7b474d4cef
commit
73c8ff7ee6
@ -19,7 +19,10 @@ export default async function handler(req, res) {
|
|||||||
return hash(readFileSync(configYaml, "utf8"));
|
return hash(readFileSync(configYaml, "utf8"));
|
||||||
});
|
});
|
||||||
|
|
||||||
const combinedHash = hash(hashes.join(""));
|
// this ties hash to specific build which should force revaliation between versions
|
||||||
|
const buildTime = process.env.NEXT_PUBLIC_BUILDTIME?.length ? process.env.NEXT_PUBLIC_BUILDTIME : '';
|
||||||
|
|
||||||
|
const combinedHash = hash(hashes.join("") + buildTime);
|
||||||
|
|
||||||
res.send({
|
res.send({
|
||||||
hash: combinedHash,
|
hash: combinedHash,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user