All checks were successful
Deploy CodeBoard / deploy (push) Successful in 3m13s
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-Claude) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
14 lines
350 B
JavaScript
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,
|
|
});
|