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
Copy file name to clipboardExpand all lines: docs/CONTRIBUTING.md
+15
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,9 @@
10
10
-[Version updates to Code](#version-updates-to-code)
11
11
-[Patching Code](#patching-code)
12
12
-[Build](#build)
13
+
-[Troubleshooting](#troubleshooting)
14
+
-[I see "Forbidden access" when I load code-server in the browser](#i-see-forbidden-access-when-i-load-code-server-in-the-browser)
15
+
-["Can only have one anonymous define call per script"](#can-only-have-one-anonymous-define-call-per-script)
13
16
-[Help](#help)
14
17
-[Test](#test)
15
18
-[Unit tests](#unit-tests)
@@ -156,6 +159,18 @@ yarn package
156
159
> If you need your builds to support older distros, run the build commands
157
160
> inside a Docker container with all the build requirements installed.
158
161
162
+
### Troubleshooting
163
+
164
+
#### I see "Forbidden access" when I load code-server in the browser
165
+
166
+
This means your patches didn't apply correctly. We have a patch to remove the auth from vanilla Code because we use our own.
167
+
168
+
Try popping off the patches with `quilt pop -a` and reapplying with `quilt push -a`.
169
+
170
+
### "Can only have one anonymous define call per script"
171
+
172
+
Code might be trying to use a dev or prod HTML in the wrong context. You can try re-running code-server and setting `VSCODE_DEV=1`.
173
+
159
174
### Help
160
175
161
176
If you get stuck or need help, you can always start a new GitHub Discussion [here](https://github.com/coder/code-server/discussions). One of the maintainers will respond and help you out.
0 commit comments