As part of our filing for Chapter 11 bankruptcy relief, Akamai has acquired select assets from Edgio, including certain customer contracts from our content delivery, applications, and security businesses, but not including Uplynk. We encourage any active Edgio delivery, applications, or security customers that are not already engaged with Akamai to migrate their services, to contact their local Akamai office or support@edg.io as soon as possible to help avoid service interruptions. Service will end on January 15, 2025.


Any Edgio Uplynk customers can reach out to support@uplynk.com for any questions or concerns.

Edgio

Cache-Manifest.js File

The cache-manifest.js file is generated during deployment. It is used to automatically prefetch all links based on configured rules. This file is publicly available from the /__edgio__/cache-manifest.js path.
It exposes rules with the following features:
and conditions:
All other features and conditions are unsupported and will be ignored. Exclude a rule from this file by adding a cache-manifest-ignore comment to it.
Example:
JavaScriptroutes.js
1import { Router } from '@edgio/core/router'
2
3export default new Router()
4 // This rule will not be listed in the cache-manifest.js file
5 .get("/static/my-image.png", {
6 caching: {
7 max_age: "1h", // Caches the response on the edge for 1 hour
8 },
9 comment: "cache-manifest-ignore"
10 })