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/projects/website/next.config.ts
Liam 96ab9be79a
All checks were successful
Deploy Website / docker (ubuntu-latest) (push) Successful in 2m24s
maybe this will help the memory usage idk
2024-10-27 10:59:41 +00:00

58 lines
1.3 KiB
TypeScript

import { withSentryConfig } from "@sentry/nextjs";
import { format } from "@formkit/tempo";
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
experimental: {
webpackMemoryOptimizations: true,
optimizePackageImports: ["@ssr/common", "@radix-ui/react-icons", "chart.js", "react-chartjs-2"],
},
images: {
unoptimized: true,
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,
},
});