Skip to content

Instantly share code, notes, and snippets.

View amirul-cf's full-sized avatar

Amirul Zharfan Zalid amirul-cf

View GitHub Profile
// Configuration: define path prefixes and their target origins
const ROUTES = [
{ prefix: '/docs', origin: 'https://<DOC URL>', strippedPrefix: false },
{ prefix: '/blog', origin: 'https://<SOME BLOG URL>', strippedPrefix: false },
{ prefix: '/home', origin: 'https://<WEBSITE>.com', strippedPrefix: true },
{ prefix: '/', origin: 'https://<WEBSITE>.com', strippedPrefix: false }, // Default
];
export default {
async fetch(request, env, ctx) {