diff --git a/next.config.ts b/next.config.ts index 1d9b582..c39691a 100644 --- a/next.config.ts +++ b/next.config.ts @@ -6,6 +6,9 @@ const nextConfig: NextConfig = { output: "export", basePath, assetPrefix: basePath || undefined, + env: { + NEXT_PUBLIC_BUILD_TIME: new Date().toISOString(), + }, }; export default nextConfig; diff --git a/src/app/os/bin/page.tsx b/src/app/os/bin/page.tsx index 5233169..3921766 100644 --- a/src/app/os/bin/page.tsx +++ b/src/app/os/bin/page.tsx @@ -131,7 +131,7 @@ export default function BinaryDetail() {

Version History ({availableHistory.length})

-
+
{groupedHistory.map(([major, versions]) => (
- entdb +
+ entdb + ยท + + Built {new Date(BUILD_TIME).toLocaleDateString()} + +