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

55 lines
1.4 KiB
TypeScript
Raw Normal View History

2024-10-04 17:25:37 +00:00
import { withSentryConfig } from "@sentry/nextjs";
import { format } from "@formkit/tempo";
2024-10-28 21:31:04 +00:00
import nextBundleAnalyzer from "@next/bundle-analyzer";
2024-10-26 13:58:44 +00:00
import type { NextConfig } from "next";
2024-10-04 17:25:37 +00:00
2024-10-26 13:58:44 +00:00
const nextConfig: NextConfig = {
2024-10-23 15:30:53 +00:00
experimental: {
webpackMemoryOptimizations: true,
2024-10-23 15:30:53 +00:00
optimizePackageImports: ["@ssr/common", "@radix-ui/react-icons", "chart.js", "react-chartjs-2"],
},
2024-10-04 17:25:37 +00:00
images: {
unoptimized: true,
2024-10-04 17:25:37 +00:00
remotePatterns: [
{
protocol: "https",
hostname: "cdn.scoresaber.com",
port: "",
pathname: "/**",
},
],
},
env: {
2024-10-09 01:20:34 +00:00
HOSTNAME: "0.0.0.0",
2024-10-04 20:37:00 +00:00
NEXT_PUBLIC_BUILD_ID: process.env.GIT_REV || "dev",
2024-10-04 17:25:37 +00:00
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",
}),
},
};
2024-10-28 21:31:04 +00:00
const withBundleAnalyzer = nextBundleAnalyzer({
enabled: process.env.ANALYZE === "true",
2024-10-04 17:25:37 +00:00
});
2024-10-28 21:31:04 +00:00
2024-10-28 21:36:39 +00:00
export default withSentryConfig(withBundleAnalyzer(nextConfig), {
org: "fascinatedcc",
project: "scoresaber-reloaded",
silent: !process.env.CI,
widenClientFileUpload: true,
reactComponentAnnotation: {
enabled: true,
},
hideSourceMaps: true,
disableLogger: true,
});