Files
codeboard/apps/web/next.config.mjs
Vectry 9a51856896
All checks were successful
Deploy CodeBoard / deploy (push) Successful in 3m13s
feat: add GlitchTip error monitoring integration
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-Claude)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
2026-02-11 01:35:05 +00:00

14 lines
350 B
JavaScript

import { withSentryConfig } from "@sentry/nextjs";
/** @type {import('next').NextConfig} */
const config = {
transpilePackages: ["@codeboard/shared", "@codeboard/database"],
output: "standalone",
};
export default withSentryConfig(config, {
silent: !process.env.CI,
disableServerWebpackPlugin: true,
disableClientWebpackPlugin: true,
});