Not sure I understand? If you put the ID in your config, then it only applies to that one Worker/Pag
Not sure I understand? If you put the ID in your config, then it only applies to that one Worker/Pages Project






WorkerEntrypoint , in which case how do I also export the endpoints?import { Hono } from 'hono'
const app = new Hono()
app.get('/', (c) => c.text('Hello Cloudflare Workers!'))
app.get('/analyse', (c) => c.text('Hello Analyse endpoint!'))
export default appWorkerEntrypoint