Skip to content

Commit

Permalink
Fix index.html links to manifest and apple-touch-icon (#142)
Browse files Browse the repository at this point in the history
##  Bug: assets have incorrect paths

Proof:

```
git clone https://github.com/emilk/eframe_template.git && lychee .
```

```
  31/31 ━━━━━━━━━━━━━━━━━━━━ Finished extracting links                                                                                              Issues found in 1 input. Find details below.

[./eframe_template/index.html]:
✗ [ERR] file:///tmp/tmp.xuDXKdo4H8/eframe_template/icon_ios_touch_192.png | Failed: Cannot find file
✗ [ERR] file:///tmp/tmp.xuDXKdo4H8/eframe_template/manifest.json | Failed: Cannot find file

🔍 31 Total (in 0s) ✅ 29 OK 🚫 2 Errors

```


## Fix

change links to these assets


## Related to

- #137
- related to
rerun-io/ewebsock#38 (comment)
  • Loading branch information
Its-Just-Nans authored Jun 27, 2024
1 parent 098d4ee commit f774883
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
<link data-trunk rel="copy-file" href="assets/maskable_icon_x512.png" />


<link rel="manifest" href="manifest.json">
<link rel="apple-touch-icon" href="icon_ios_touch_192.png">
<link rel="manifest" href="assets/manifest.json">
<link rel="apple-touch-icon" href="assets/icon_ios_touch_192.png">
<meta name="theme-color" media="(prefers-color-scheme: light)" content="white">
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#404040">

Expand Down

0 comments on commit f774883

Please sign in to comment.