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

54 lines
1.1 KiB
JavaScript
Raw Normal View History

2024-09-30 08:37:04 +00:00
import { withSentryConfig } from "@sentry/nextjs";
2024-09-24 09:18:28 +00:00
import { format } from "@formkit/tempo";
2024-09-13 19:52:27 +00:00
2024-09-05 16:09:17 +00:00
/** @type {import('next').NextConfig} */
2024-09-13 19:52:27 +00:00
const nextConfig = {
2024-10-03 18:53:39 +00:00
output: "standalone",
2024-09-27 22:04:14 +00:00
images: {
remotePatterns: [
{
2024-09-30 08:37:04 +00:00
protocol: "https",
hostname: "cdn.scoresaber.com",
port: "",
pathname: "/**",
2024-09-27 22:04:14 +00:00
},
],
},
2024-09-13 19:52:27 +00:00
env: {
2024-09-30 08:37:04 +00:00
NEXT_PUBLIC_BUILD_ID:
2024-10-03 19:04:03 +00:00
process.env.GIT_REV || "dev",
2024-09-13 19:52:27 +00:00
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
2024-10-04 10:36:08 +00:00
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,
},
});