Skip to content

Commit 215a5e2

Browse files
committed
Add fix for Numeric JS download issues.
Should fix #68.
1 parent cdbfb50 commit 215a5e2

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

GUIDE.md

+15
Original file line numberDiff line numberDiff line change
@@ -312,6 +312,21 @@ Now, scroll down toward the bottom and delete the following line containing `#de
312312
313313
This keeps our Raspberry Pi device (which has an ARM CPU) from being recognized as a mobile device.
314314
315+
Finally, we have to adjust the protocol to access the Numeric JS library- for some reason the Cloudflare security certificates don't work properly over `https`. We'll need to fix this in the Bazel `WORKSPACE` file:
316+
317+
```shell
318+
sudo nano WORKSPACE
319+
```
320+
321+
Around line 283, change `https` to `http`:
322+
323+
```
324+
http_file(
325+
name = "numericjs_numeric_min_js",
326+
url = "http://cdnjs.cloudflare.com/ajax/libs/numeric/1.2.6/numeric.min.js",
327+
)
328+
```
329+
315330
Now let's configure the build:
316331
317332
```shell

0 commit comments

Comments
 (0)