diff --git a/docs/getting-started/configuration.md b/docs/getting-started/configuration.md
index 1dc1ffc1b1..59780d2a01 100644
--- a/docs/getting-started/configuration.md
+++ b/docs/getting-started/configuration.md
@@ -164,27 +164,25 @@ Open `packages/app/src/App.tsx` and below the last `import` line, add:
```typescript
import { githubAuthApiRef } from '@backstage/core-plugin-api';
import { SignInProviderConfig, SignInPage } from '@backstage/core-components';
-
-const githubProvider: SignInProviderConfig = {
- id: 'github-auth-provider',
- title: 'GitHub',
- message: 'Sign in using GitHub',
- apiRef: githubAuthApiRef,
-};
```
Search for `const app = createApp({` in this file, and below `apis,` add:
```typescript
components: {
- SignInPage: props => (
-
- ),
- },
+ SignInPage: props => (
+
+ ),
+},
```
> Since [v1.1.0](https://github.com/backstage/backstage/releases/tag/v1.1.0-next.3), you must provide an [explicit sign-in resolver](../auth/identity-resolver.md).