This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
scoresaber-reloadedv3/apps/frontend/next.config.mjs
Liam dac4735e52
Some checks failed
Deploy Frontend / deploy (push) Failing after 1m32s
maybe it will work now
2024-10-04 11:31:14 +01:00

56 lines
1.2 KiB
JavaScript

import { withSentryConfig } from "@sentry/nextjs";
import { format } from "@formkit/tempo";
/** @type {import('next').NextConfig} */
const nextConfig = {
output: "standalone",
images: {
remotePatterns: [
{
protocol: "https",
hostname: "cdn.scoresaber.com",
port: "",
pathname: "/**",
},
],
},
env: {
NEXT_PUBLIC_BUILD_ID:
process.env.GIT_REV || "dev",
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",
}),
},
};
export default nextConfig;
// export default withSentryConfig(nextConfig, {
// org: "scoresaber-reloaded",
// project: "frontend",
// sentryUrl: "https://glitchtip.fascinated.cc/",
// silent: !process.env.CI,
// reactComponentAnnotation: {
// enabled: true,
// },
// tunnelRoute: "/monitoring",
// hideSourceMaps: true,
// disableLogger: true,
// sourcemaps: {
// disable: true,
// },
// release: {
// create: false,
// finalize: false,
// },
// });