export default {
async fetch(request, env, ctx) {
// URL of the Google Doc (make sure it's shareable and publicly accessible)
const googleDocUrl = 'https://docs.google.com/document/d/doc-id/view';
// Fetch the Google Doc and return as response
return fetch(googleDocUrl);
},
};
export default {
async fetch(request, env, ctx) {
// URL of the Google Doc (make sure it's shareable and publicly accessible)
const googleDocUrl = 'https://docs.google.com/document/d/doc-id/view';
// Fetch the Google Doc and return as response
return fetch(googleDocUrl);
},
};