Skip to content

Commit f91d6e8

Browse files
Remove unnecessary double dashes in npm commands
1 parent e6e5cf8 commit f91d6e8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/content/docs/en/guides/environment-variables.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,13 +93,13 @@ This allows you to run the dev server or build your site connecting to different
9393
<Fragment slot="npm">
9494
```shell
9595
# Run the dev server connected to a "staging" API
96-
npm run astro dev -- --mode staging
96+
npm run astro dev --mode staging
9797

9898
# Build a site that connects to a "production" API with additional debug information
99-
npm run astro build -- --devOutput
99+
npm run astro build --devOutput
100100

101101
# Build a site that connects to a "testing" API
102-
npm run astro build -- --mode testing
102+
npm run astro build --mode testing
103103
```
104104
</Fragment>
105105
<Fragment slot="pnpm">

0 commit comments

Comments
 (0)