/opt/canhelp/node_modules/hono/dist/adapter/bun
NameSizeModeActions
conninfo.js6550644editdlrm
index.js4470644editdlrm
serve-static.js7470644editdlrm
server.js1240644editdlrm
ssg.js3790644editdlrm
websocket.js18470644editdlrm
Edit: /opt/canhelp/node_modules/hono/dist/adapter/bun/ssg.js (379B)
// src/adapter/bun/ssg.ts import { toSSG as baseToSSG } from "../../helper/ssg/index.js"; var { write } = Bun; var bunFileSystemModule = { writeFile: async (path, data) => { await write(path, data); }, mkdir: async () => { } }; var toSSG = async (app, options) => { return baseToSSG(app, bunFileSystemModule, options); }; export { bunFileSystemModule, toSSG };