We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe08237 commit 5eef774Copy full SHA for 5eef774
build.js
@@ -0,0 +1,5 @@
1
+const fs = require('fs');
2
+fs.writeFile('built-time.js', `module.exports = '${new Date()}'`, (err) => {
3
+ if (err) throw err;
4
+ console.log('Build time file created successfully!');
5
+});
0 commit comments