2024-07-30 20:29:32 +00:00
|
|
|
import {withSentryConfig} from "@sentry/nextjs";
|
2024-04-21 19:18:01 +00:00
|
|
|
import nextBuildId from "next-build-id";
|
|
|
|
import path from "path";
|
2024-07-30 20:29:32 +00:00
|
|
|
import { fileURLToPath } from "url";
|
2024-04-21 19:18:01 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The current git commit hash.
|
|
|
|
*
|
|
|
|
* @type {string|string} The current git commit hash.
|
|
|
|
*/
|
|
|
|
const buildId = (
|
|
|
|
process.env.GIT_REV || nextBuildId.sync({ dir: path.dirname(fileURLToPath(import.meta.url)) })
|
|
|
|
).substring(0, 7);
|
2024-04-21 17:23:29 +00:00
|
|
|
|
2024-04-14 16:45:04 +00:00
|
|
|
/** @type {import('next').NextConfig} */
|
|
|
|
const nextConfig = {
|
|
|
|
output: "standalone",
|
2024-04-14 17:46:37 +00:00
|
|
|
images: {
|
2024-04-21 18:48:24 +00:00
|
|
|
remotePatterns: [
|
|
|
|
{
|
|
|
|
protocol: "https",
|
|
|
|
hostname: "git.fascinated.cc",
|
|
|
|
pathname: "/**",
|
|
|
|
},
|
2024-04-14 18:55:07 +00:00
|
|
|
{
|
|
|
|
protocol: "https",
|
|
|
|
hostname: "api.mcutils.xyz",
|
|
|
|
pathname: "/**",
|
|
|
|
},
|
2024-04-14 17:46:37 +00:00
|
|
|
],
|
|
|
|
},
|
2024-04-21 19:18:01 +00:00
|
|
|
env: {
|
|
|
|
NEXT_PUBLIC_BUILD_ID: buildId,
|
|
|
|
},
|
2024-04-21 04:47:52 +00:00
|
|
|
experimental: {
|
|
|
|
mdxRs: true,
|
|
|
|
},
|
2024-04-14 16:45:04 +00:00
|
|
|
};
|
|
|
|
|
2024-07-30 20:29:32 +00:00
|
|
|
export default withSentryConfig(nextConfig, {
|
|
|
|
// For all available options, see:
|
|
|
|
// https://github.com/getsentry/sentry-webpack-plugin#options
|
2024-04-21 17:23:29 +00:00
|
|
|
|
2024-07-30 20:29:32 +00:00
|
|
|
org: "minecraft-utilities",
|
|
|
|
project: "frontend",
|
|
|
|
sentryUrl: "https://glitchtip.fascinated.cc/",
|
2024-04-21 17:23:29 +00:00
|
|
|
|
2024-07-30 20:29:32 +00:00
|
|
|
// Only print logs for uploading source maps in CI
|
|
|
|
silent: !process.env.CI,
|
2024-04-21 17:23:29 +00:00
|
|
|
|
2024-07-30 20:29:32 +00:00
|
|
|
// For all available options, see:
|
|
|
|
// https://docs.sentry.io/platforms/javascript/guides/nextjs/manual-setup/
|
|
|
|
|
|
|
|
// Upload a larger set of source maps for prettier stack traces (increases build time)
|
|
|
|
widenClientFileUpload: true,
|
|
|
|
|
|
|
|
// Uncomment to route browser requests to Sentry through a Next.js rewrite to circumvent ad-blockers.
|
|
|
|
// This can increase your server load as well as your hosting bill.
|
|
|
|
// Note: Check that the configured route will not match with your Next.js middleware, otherwise reporting of client-
|
|
|
|
// side errors will fail.
|
|
|
|
// tunnelRoute: "/monitoring",
|
|
|
|
|
|
|
|
// Hides source maps from generated client bundles
|
|
|
|
hideSourceMaps: true,
|
|
|
|
|
|
|
|
// Automatically tree-shake Sentry logger statements to reduce bundle size
|
|
|
|
disableLogger: true,
|
|
|
|
|
|
|
|
// Enables automatic instrumentation of Vercel Cron Monitors. (Does not yet work with App Router route handlers.)
|
|
|
|
// See the following for more information:
|
|
|
|
// https://docs.sentry.io/product/crons/
|
|
|
|
// https://vercel.com/docs/cron-jobs
|
|
|
|
automaticVercelMonitors: true,
|
|
|
|
});
|