scoresaber-reloadedv3/next.config.mjs
Liam 4b4e7f7f31
All checks were successful
Deploy SSR / deploy (push) Successful in 1m12s
add short time back to the build info
2024-09-13 21:19:59 +01:00

32 lines
920 B
JavaScript

import nextBuildId from "next-build-id";
import path from 'path';
import { fileURLToPath } from 'url';
import {format} from '@formkit/tempo'
const __filename = fileURLToPath(import.meta.url); // get the resolved path to the file
const __dirname = path.dirname(__filename); // get the name of the directory
/** @type {import('next').NextConfig} */
const nextConfig = {
env: {
NEXT_PUBLIC_BUILD_ID: process.env.GIT_REV || nextBuildId.sync({ dir: __dirname }),
NEXT_PUBLIC_BUILD_TIME: new Date().toLocaleDateString("en-US", {
year: "numeric",
month: "long",
day: "numeric",
hour: "numeric",
minute: "numeric",
timeZoneName: "short",
}),
NEXT_PUBLIC_BUILD_TIME_SHORT: format(new Date(), {
date: "short",
time: "short",
})
}
};
console.log(`NEXT_PUBLIC_BUILD_TIME_SHORT: ${nextConfig.env.NEXT_PUBLIC_BUILD_TIME_SHORT}`);
export default nextConfig;