scoresaber-reloadedv3/next.config.mjs

42 lines
1.0 KiB
JavaScript
Raw Normal View History

2024-09-24 09:18:28 +00:00
import { format } from "@formkit/tempo";
2024-09-13 19:52:27 +00:00
import nextBuildId from "next-build-id";
2024-09-24 09:18:28 +00:00
import path from "path";
import { fileURLToPath } from "url";
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 = {
2024-09-25 02:42:02 +00:00
experimental: {
webpackMemoryOptimizations: true,
},
2024-09-27 22:04:14 +00:00
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'cdn.scoresaber.com',
port: '',
pathname: '/**',
},
],
},
2024-09-13 19:52:27 +00:00
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-24 09:18:28 +00:00
}),
},
2024-09-13 19:52:27 +00:00
};
2024-09-05 16:09:17 +00:00
export default nextConfig;