SPB Git forge

spb/polyllm

Public
15commits 1branches 0releases
2.2 MBsize
maindefault branch
13 days agolast push
TypeScript 97.4% SQL 1% JavaScript 0.9% CSS 0.6%
212 B · 5 lines javascript
Raw Blame History
1export async function resolve(specifier, context, next) {2  if (specifier === "server-only") return { url: new URL("./empty.mjs", import.meta.url).href, shortCircuit: true };3  return next(specifier, context);4}5