We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c02ca7 commit b68f66fCopy full SHA for b68f66f
docusaurus/docs/deployment.md
@@ -318,13 +318,13 @@ The `predeploy` script will run automatically before `deploy` is run.
318
If you are deploying to a GitHub user page instead of a project page you'll need to make one
319
additional modification:
320
321
-1. Tweak your `package.json` scripts to push deployments to **master**:
+1. Tweak your `package.json` scripts to push deployments to **main**:
322
323
```diff
324
"scripts": {
325
"predeploy": "npm run build",
326
- "deploy": "gh-pages -d build",
327
-+ "deploy": "gh-pages -b master -d build",
++ "deploy": "gh-pages -b main -d build",
328
```
329
330
### Step 3: Deploy the site by running `npm run deploy`
0 commit comments