14 lines
321 B
TypeScript
14 lines
321 B
TypeScript
|
|
/**
|
||
|
|
* CDN versions for lazy-loaded libraries.
|
||
|
|
* Keep these in sync with package.json for type compatibility.
|
||
|
|
*/
|
||
|
|
export const CDN_VERSIONS = {
|
||
|
|
rrweb: '2.0.0-alpha.4',
|
||
|
|
rrwebPlayer: '1.0.0-alpha.4',
|
||
|
|
} as const;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Base CDN URL for jsdelivr ESM imports
|
||
|
|
*/
|
||
|
|
export const CDN_BASE = 'https://cdn.jsdelivr.net/npm';
|