18 lines
400 B
TypeScript
18 lines
400 B
TypeScript
|
|
/**
|
||
|
|
* CDN versions for lazy-loaded libraries.
|
||
|
|
* Keep these in sync with package.json for type compatibility.
|
||
|
|
*/
|
||
|
|
export const CDN_VERSIONS = {
|
||
|
|
xterm: '5.3.0',
|
||
|
|
xtermAddonFit: '0.8.0',
|
||
|
|
highlightJs: '11.11.1',
|
||
|
|
apexcharts: '5.3.6',
|
||
|
|
tiptap: '2.23.0',
|
||
|
|
fontawesome: '7.1.0',
|
||
|
|
} as const;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Base CDN URL for jsdelivr ESM imports
|
||
|
|
*/
|
||
|
|
export const CDN_BASE = 'https://cdn.jsdelivr.net/npm';
|