Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
lforst committed Mar 4, 2024
1 parent 56041ce commit 4e28555
Showing 1 changed file with 9 additions and 18 deletions.
27 changes: 9 additions & 18 deletions packages/nextjs/src/config/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,19 @@ export type NextConfigObject = {
};

export type SentryBuildtimeOptions = {
org: {};
project: {};
authToken: {};
sentryUrl: {};
telemetry: {};

/**
* TODO
*/
sourcemaps: {
disable: {};
assets: {};
ignore: {};
};

/**
Expand All @@ -72,24 +80,7 @@ export type SentryBuildtimeOptions = {
/**
* TODO
*/
componentAnnotation: {};

/**
* TODO
*/
telemetry: {};

/**
* Override the SDK's default decision about whether or not to enable to the Sentry webpack plugin for server files.
* Note that `false` forces the plugin to be enabled, even in situations where it's not recommended.
*/
disableServerWebpackPlugin?: boolean;

/**
* Override the SDK's default decision about whether or not to enable to the Sentry webpack plugin for client files.
* Note that `false` forces the plugin to be enabled, even in situations where it's not recommended.
*/
disableClientWebpackPlugin?: boolean;
reactComponentAnnotation: {};

/**
* Use `hidden-source-map` for webpack `devtool` option, which strips the `sourceMappingURL` from the bottom of built
Expand Down

0 comments on commit 4e28555

Please sign in to comment.