UNPKG

astro

Version:

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

15 lines (14 loc) 338 B
import { fileURLToPath } from "node:url"; import { createStorage } from "unstorage"; import fsLiteDriver from "unstorage/drivers/fs-lite"; function createFsStorage({ base }) { return createStorage({ // Types are weirly exported driver: fsLiteDriver({ base: fileURLToPath(base) }) }); } export { createFsStorage };