You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Notice the `no_proxy=.mycompany.com`; it is necessary because the package used by corepack does not follow the common rules for the `no_proxy` variable. See [Rob--W/proxy-from-env/issues#29](https://github.com/Rob--W/proxy-from-env/issues/29).
31
+
32
+
For **pnpm** to work with Artifactory, you have to additionally add this to the variables of your Dev Container:
33
+
34
+
```json
35
+
{
36
+
"containerEnv": {
37
+
"COREPACK_INTEGRITY_KEYS": "0"
38
+
}
39
+
}
40
+
```
41
+
42
+
The reason for this are missing singatures in the Artifactory NPM API. See [nodejs/corepack#725](https://github.com/nodejs/corepack/issues/725)
Notice the `no_proxy=.mycompany.com`; it is necessary because the package used by corepack does not follow the common rules for the `no_proxy` variable. See [Rob--W/proxy-from-env/issues#29](https://github.com/Rob--W/proxy-from-env/issues/29).
65
+
66
+
For **pnpm** to work with Artifactory, you have to additionally add this to the variables of your Dev Container:
67
+
68
+
```json
69
+
{
70
+
"containerEnv": {
71
+
"COREPACK_INTEGRITY_KEYS": "0"
72
+
}
73
+
}
74
+
```
75
+
76
+
The reason for this are missing singatures in the Artifactory NPM API. See [nodejs/corepack#725](https://github.com/nodejs/corepack/issues/725)
0 commit comments