UNPKG

@redwoodjs/sdk

Version:

Build fast, server-driven webapps on Cloudflare with SSR, RSC, and realtime

14 lines (13 loc) 292 B
export const createModuleMap = () => new Proxy({}, { get(_, id) { return new Proxy({}, { get(_, name) { return { id, name, chunks: [], }; }, }); }, });