0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-16 21:56:25 -05:00

fix: typos & rewording in best practices (#3093)

This commit is contained in:
Fidel González 2022-03-27 05:36:06 -04:00 committed by GitHub
parent a2c3fa9ea7
commit 80df591e8f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -121,7 +121,7 @@ packages:
proxy: npmjs
```
This means, if a private packaged eg: `@my-company/auth` is published locally, the registry will look up at the public registry. If your intention is fully protection, remove the `proxy` property from your configuration, for instance:
This means that even if a private package like `@my-company/auth` is published locally, the server will look up at the public registry. If that's not your intention, remove the `proxy` property and use a configuration like this one:
```yaml
packages:
@ -139,7 +139,7 @@ packages:
proxy: npmjs
```
This configuration will **avoid downloading needlessly to external registries**, merging external metadata and download external tarballs.
This will **avoid downloading tarballs, and merge metadata needlessly from external registries**.
## Server {#server}