19 lines
440 B
JavaScript
19 lines
440 B
JavaScript
const nextBuildId = require("next-build-id");
|
|
|
|
/** @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",
|
|
}),
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|