CDN docs url changes (#8466)

Co-authored-by: bruno-sachin <bruno-sachin@brunos-MacBook-Air.local>
This commit is contained in:
sachin-bruno
2026-07-03 00:34:11 +05:30
committed by GitHub
parent eca0939f31
commit bf3abec50e

View File

@@ -18,7 +18,7 @@ import { brunoToOpenCollection } from '@usebruno/converters';
import { sanitizeName } from 'utils/common/regex';
import { escapeHtml } from 'utils/response';
const CDN_BASE_URL = 'https://cdn.opencollection.com';
const CDN_BASE_URL = 'https://cdn.usebruno.com';
const FEATURES = [
'Standalone HTML file - no server required',
@@ -36,8 +36,8 @@ const buildHtmlDocument = (collectionName, escapedYamlContent) => `<!DOCTYPE htm
body { margin: 0; padding: 0; }
#opencollection-container { width: 100vw; height: 100vh; }
</style>
<link rel="stylesheet" href="${CDN_BASE_URL}/docs.css">
<script src="${CDN_BASE_URL}/docs.js"></script>
<link rel="stylesheet" href="${CDN_BASE_URL}/docs/index.css">
<script src="${CDN_BASE_URL}/docs/index.js"></script>
</head>
<body>
<div id="opencollection-container"></div>