mirror of
https://github.com/fergalmoran/mixyboos.git
synced 2026-01-04 07:55:57 +00:00
34 lines
713 B
JavaScript
34 lines
713 B
JavaScript
import { withSentryConfig } from "@sentry/nextjs";
|
|
/**
|
|
* Run `build` or `dev` with `SKIP_ENV_VALIDATION` to skip env validation. This is especially useful
|
|
* for Docker builds.
|
|
*/
|
|
await import("./src/env.mjs");
|
|
|
|
/** @type {import("next").NextConfig} */
|
|
const config = {
|
|
reactStrictMode: true,
|
|
images: {
|
|
domains: [
|
|
"cloudflare-ipfs.com",
|
|
"avatars.githubusercontent.com",
|
|
"mixyboos.twic.pics",
|
|
],
|
|
},
|
|
};
|
|
export default withSentryConfig(
|
|
config,
|
|
{
|
|
silent: true,
|
|
org: "fergal-moran",
|
|
project: "mixyboos",
|
|
},
|
|
{
|
|
widenClientFileUpload: true,
|
|
transpileClientSDK: true,
|
|
tunnelRoute: "/monitoring",
|
|
hideSourceMaps: true,
|
|
disableLogger: true,
|
|
},
|
|
);
|