mirror of
https://github.com/AykutSarac/jsoncrack.com.git
synced 2025-01-12 19:02:53 +08:00
27 lines
451 B
JavaScript
27 lines
451 B
JavaScript
const { withSentryConfig } = require("@sentry/nextjs");
|
|
|
|
/**
|
|
* @type {import('next').NextConfig}
|
|
*/
|
|
const config = {
|
|
reactStrictMode: false,
|
|
productionBrowserSourceMaps: true,
|
|
compiler: {
|
|
styledComponents: true,
|
|
},
|
|
};
|
|
|
|
module.exports = withSentryConfig(
|
|
config,
|
|
{
|
|
silent: true,
|
|
org: "aykut-sarac",
|
|
project: "json-crack",
|
|
},
|
|
{
|
|
widenClientFileUpload: true,
|
|
hideSourceMaps: true,
|
|
disableLogger: true,
|
|
}
|
|
);
|