https://developers.cloudflare.com/pages/framework-guides/deploy-a-qwik-site/#use-bindings-in-your-qwik-application The example in this section is incorrect, it should be: ```typescript export const useKVData = routeLoader$(({ platform }) => { // This is wrong: // const { MY_KV } = (platform as { MY_KV: KVNamespace })); const { MY_KV } = platform.env; return { // .... } }); ```