yes read that but I read a blog post (old) that was stating GET was around 20-30ms and list 200ms (x
yes read that but I read a blog post (old) that was stating GET was around 20-30ms and list 200ms (x10) so I got scared





env from cloudflare:workers? import { env } from "cloudflare:workers";cloudflare:workers to Webpack externals?nextjs, i just want to define a /api/test and call env.MY_KV.get("mykey") in /api/test?⨯ cloudflare:workers
Module build failed: UnhandledSchemeError: Reading from "cloudflare:workers" is not handled by plugins (Unhandled scheme).
Webpack supports "data:" and "file:" URIs by default.
You may need an additional plugin to handle "cloudflare:" URIs.
Import trace for requested module:
cloudflare:workers// or maybe export default? this may differ per environment
module.exports = {
// ...other options
webpack: (config) => {
config.externals = ['cloudflare:workers'];
return config
}
}