first commit

This commit is contained in:
Lee
2023-12-01 02:22:05 +00:00
parent 2d262fff68
commit 537e0b75f6
25 changed files with 3989 additions and 4509 deletions

View File

@ -1,4 +1,18 @@
/** @type {import('next').NextConfig} */
const nextConfig = {}
const nextBuildId = require("next-build-id");
module.exports = nextConfig
/** @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;