This repository has been archived on 2024-06-01. You can view files and clone it, but cannot push or open issues or pull requests.
Frontend/next.config.mjs
Liam 4e541eaa6d
Some checks failed
Deploy App / docker (ubuntu-latest) (push) Failing after 7s
Publish Docker Image / docker (ubuntu-latest) (push) Failing after 25s
fix ci
2024-04-26 22:32:43 +01:00

23 lines
616 B
JavaScript

import {withSentryConfig} from "@sentry/nextjs";
/** @type {import('next').NextConfig} */
const nextConfig = {
output: "standalone",
};
export default withSentryConfig(nextConfig, {
// For all available options, see:
// https://github.com/getsentry/sentry-webpack-plugin#options
silent: true,
org: "paste",
project: "frontend",
url: "https://glitchtip.fascinated.cc/",
}, {
// For all available options, see:
// https://docs.sentry.io/platforms/javascript/guides/nextjs/manual-setup/
widenClientFileUpload: true,
tunnelRoute: "/monitoring",
hideSourceMaps: true,
disableLogger: true,
});