···17171818const now = new Date();
1919let commitHash;
2020+let fakeCommitHash = false;
2021try {
2122 commitHash = execSync('git rev-parse --short HEAD').toString().trim();
2223} catch (error) {
2324 // If error, means git is not installed or not a git repo (could be downloaded instead of git cloned)
2425 // Fallback to random hash which should be different on every build run 🤞
2526 commitHash = uid();
2727+ fakeCommitHash = true;
2628}
27292830const rollbarCode = fs.readFileSync(
···3840 define: {
3941 __BUILD_TIME__: JSON.stringify(now),
4042 __COMMIT_HASH__: JSON.stringify(commitHash),
4343+ __FAKE_COMMIT_HASH__: fakeCommitHash,
4144 },
4245 server: {
4346 host: true,