Vercel Sandbox now supports FUSE, letting you mount remote storage and custom filesystems inside a running Sandbox. Use it to attach S3 buckets, network filesystems, or any other FUSE-compatible driver as a regular path.
import { Sandbox } from '@vercel/sandbox';
const sandbox = await Sandbox.create();
// Install Mountpoint for Amazon S3 (official release) and its FUSE dependency.await sandbox.run...
