-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Inject sentry client config with Nuxt addPluginTemplate
- Loading branch information
Showing
8 changed files
with
3 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1 @@ | ||
import type { Integration, Options, StackParser } from '@sentry/types'; | ||
import type * as clientSdk from './index.client'; | ||
import type * as serverSdk from './index.server'; | ||
|
||
// We export everything from both the client part of the SDK and from the server part. Some of the exports collide, | ||
// which is not allowed, unless we re-export the colliding exports in this file - which we do below. | ||
export * from './index.client'; | ||
export * from './index.server'; | ||
|
||
// re-export colliding types | ||
export declare function init(options: Options | clientSdk.BrowserOptions | serverSdk.NodeOptions): void; | ||
export declare const linkedErrorsIntegration: typeof clientSdk.linkedErrorsIntegration; | ||
export declare const contextLinesIntegration: typeof clientSdk.contextLinesIntegration; | ||
export declare const getDefaultIntegrations: (options: Options) => Integration[]; | ||
export declare const defaultStackParser: StackParser; | ||
export declare const continueTrace: typeof clientSdk.continueTrace; | ||
export declare const metrics: typeof clientSdk.metrics & typeof serverSdk.metrics; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.