UNPKG

astro

Version:

Astro is a modern site builder with web best practices, performance, and DX front-of-mind.

18 lines (17 loc) 372 B
import { fileURLToPath } from "node:url"; import { resolveEntrypoint } from "../utils.js"; function createRequireLocalProviderUrlResolver({ root, intercept }) { return { resolve(input) { const path = fileURLToPath(resolveEntrypoint(root, input)); intercept?.(path); return path; } }; } export { createRequireLocalProviderUrlResolver };