mirror of
https://gitee.com/docsifyjs/docsify.git
synced 2024-11-29 10:38:48 +08:00
f5412dc7b0
* Update linting configuration (eslint, prettier) * Fix lint issues following eslint prettier update * Change ESLint config to allow boolean coercion * Switch to default import name per docs * Fix suppression of error details * Update JSDoc comments * Update waiForFunctin to provide error details --------- Co-authored-by: Koy Zhuang <koy@ko8e24.top>
54 lines
1.7 KiB
JavaScript
54 lines
1.7 KiB
JavaScript
// Exports
|
|
// =============================================================================
|
|
export const config = {
|
|
matcher: ['/preview/(index.html)?'],
|
|
};
|
|
|
|
// Rewrite rules shared with local server configurations
|
|
export const rewriteRules = [
|
|
// Replace CDN URLs with local paths
|
|
{
|
|
match: /https?.*\/CHANGELOG.md/g,
|
|
replace: '/CHANGELOG.md',
|
|
},
|
|
{
|
|
// CDN versioned default
|
|
// Ex1: //cdn.com/package-name
|
|
// Ex2: http://cdn.com/package-name@1.0.0
|
|
// Ex3: https://cdn.com/package-name@latest
|
|
match: /(?:https?:)*\/\/.*cdn.*docsify[@\d.latest]*(?=["'])/g,
|
|
replace: '/dist/docsify.min.js',
|
|
},
|
|
{
|
|
// CDN paths to local paths
|
|
// Ex1: //cdn.com/package-name/path/file.js => /path/file.js
|
|
// Ex2: http://cdn.com/package-name@1.0.0/dist/file.js => /dist/file.js
|
|
// Ex3: https://cdn.com/package-name@latest/dist/file.js => /dist/file.js
|
|
match: /(?:https?:)*\/\/.*cdn.*docsify[@\d.latest]*\/(?:dist\/)/g,
|
|
replace: '/dist/',
|
|
},
|
|
];
|
|
|
|
// Serve virtual /preview/index.html
|
|
// Note: See vercel.json for preview routing configuration
|
|
// 1. Fetch index.html from /docs/ directory
|
|
// 2. Replace CDN URLs with local paths (see rewriteRules)
|
|
// 3. Return preview HTML
|
|
export default async function middleware(request) {
|
|
const { origin } = new URL(request.url);
|
|
const indexURL = `${origin}/docs/index.html`;
|
|
const indexHTML = await fetch(indexURL).then(res => res.text());
|
|
const previewHTML = rewriteRules.reduce(
|
|
(html, rule) => html.replace(rule.match, rule.replace),
|
|
indexHTML,
|
|
);
|
|
|
|
return new Response(previewHTML, {
|
|
status: 200,
|
|
headers: {
|
|
'content-type': 'text/html',
|
|
'x-robots-tag': 'noindex',
|
|
},
|
|
});
|
|
}
|