scoresaber-reloadedv3/next.config.mjs

32 lines
920 B
JavaScript
Raw Normal View History

2024-09-13 19:52:27 +00:00
import nextBuildId from "next-build-id";
import path from 'path';
import { fileURLToPath } from 'url';
2024-09-13 20:19:59 +00:00
import {format} from '@formkit/tempo'
2024-09-13 19:52:27 +00:00
const __filename = fileURLToPath(import.meta.url); // get the resolved path to the file
const __dirname = path.dirname(__filename); // get the name of the directory
2024-09-05 16:09:17 +00:00
/** @type {import('next').NextConfig} */
2024-09-13 19:52:27 +00:00
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",
2024-09-13 20:19:59 +00:00
}),
NEXT_PUBLIC_BUILD_TIME_SHORT: format(new Date(), {
date: "short",
time: "short",
2024-09-13 19:52:27 +00:00
})
}
};
2024-09-05 16:09:17 +00:00
2024-09-13 20:19:59 +00:00
console.log(`NEXT_PUBLIC_BUILD_TIME_SHORT: ${nextConfig.env.NEXT_PUBLIC_BUILD_TIME_SHORT}`);
2024-09-05 16:09:17 +00:00
export default nextConfig;