Liam
e403d1f241
All checks were successful
Deploy Website / docker (ubuntu-latest) (push) Successful in 2m24s
56 lines
1.3 KiB
JavaScript
56 lines
1.3 KiB
JavaScript
import { withSentryConfig } from "@sentry/nextjs";
|
|
import { format } from "@formkit/tempo";
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
experimental: {
|
|
optimizePackageImports: ["@ssr/common", "@radix-ui/react-icons", "chart.js", "react-chartjs-2"],
|
|
},
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "cdn.scoresaber.com",
|
|
port: "",
|
|
pathname: "/**",
|
|
},
|
|
],
|
|
},
|
|
env: {
|
|
HOSTNAME: "0.0.0.0",
|
|
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 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,
|
|
},
|
|
});
|