Skip to content

Commit bbeece8

Browse files
committed
remove org from readme (no need with org tokens)
1 parent 896b9b2 commit bbeece8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/astro/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ If you want to fully customize your SDK setup, you can do so, too:
5151

5252
### 2. [Optional] Uploading Source Maps
5353

54-
To upload source maps to Sentry, simply add the `project`, `org` and `authToken` options to `sentryAstro`:
54+
To upload source maps to Sentry, simply add the `project` and `authToken` options to `sentryAstro`:
5555

5656
```js
5757
// astro.config.mjs
@@ -62,7 +62,6 @@ export default defineConfig({
6262
integrations: [
6363
sentryAstro({
6464
dsn: '__DSN__',
65-
org: 'your-org-slug',
6665
project: 'your-project-slug',
6766
authToken: import.meta.env('SENTRY_AUTH_TOKEN'),
6867
}),
@@ -74,11 +73,12 @@ You can also define these values as environment variables in e.g. a `.env` file
7473
or in you CI configuration:
7574

7675
```sh
77-
SENTRY_ORG="your-org-slug"
7876
SENTRY_PROJECT="your-project"
7977
SENTRY_AUTH_TOKEN="your-token"
8078
```
8179

80+
Follow [this guide](https://docs.sentry.io/product/accounts/auth-tokens/#organization-auth-tokens) to create an auth token.
81+
8282
### 3. [Optional] Advanced Configuration
8383

8484
To fully customize and configure Sentry in an Astro project, follow step 1 and in addition,

0 commit comments

Comments
 (0)