Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/platforms/unreal/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ PublicDependencyModuleNames.AddRange(new string[] { ..., "Sentry" });
The minimum configuration required is the [DSN](/product/sentry-basics/dsn-explainer/) of your project:


```bash
``` {tabTitle: Public DSN}
___PUBLIC_DSN___
```

Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
To use the SDK, initialize it in your Svelte entry point before bootstrapping your app. In a typical Svelte project, that is your `main.js` or `main.ts` file.


```javascript {filename: main.js} {"onboardingOptions": {"performance": "10, 13-20", "session-replay": "11, 21-25"}}
```javascript {filename: main.js} {"onboardingOptions": {"performance": "10, 13-20", "session-replay": "11, 23-29"}}
import "./app.css";
import App from "./App.svelte";

import * as Sentry from "@sentry/svelte";

// Initialize the Sentry SDK here
Sentry.init({
dsn: "<Sentry DSN>",
dsn: "___PUBLIC_DSN___",
integrations: [
Sentry.browserTracingIntegration(),
Sentry.replayIntegration(),
Expand Down
2 changes: 1 addition & 1 deletion platform-includes/getting-started-config/unity.mdx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
The minimum configuration required is the [DSN](/product/sentry-basics/dsn-explainer/) to your project.


```
``` {tabTitle: Public DSN}
___PUBLIC_DSN___
```

Expand Down
2 changes: 1 addition & 1 deletion platform-includes/getting-started-config/unreal.mdx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
The minimum configuration required is the [DSN](/product/sentry-basics/dsn-explainer/) of your project:


```
``` {tabTitle: Public DSN}
___PUBLIC_DSN___
```

Expand Down