|
|
|
|
|
by fulldecent2
2344 days ago
|
|
The long-term solution for web is: - Use more static HTML
- Since your assets are versioned and static, start calculating hashes for everything you publish
- When you link to something, include the URL and the integrity <a href="URL" integrity="sha256:...">...</a> In the immediate future this will fix broken links. Things that are important will be cached and accessible via content addressing. In the long-term future this will fix other problems like linking to a page and then it being changed to something you don't endorse. |
|