anproto -- authenticated non-networked protocol or another proto sha256 blobs signed with ed25519 keypairs anproto.com
ed25519 social protocols

try to fix cors

Changed files
+6 -1
+6 -1
example.js
··· 142 142 return await c.html(html) 143 143 }) 144 144 145 - app.use('*', serveStatic({ root: './' })) 145 + app.use('*', serveStatic({ 146 + root: './', 147 + onFound: (_path, c) => { 148 + c.header("Access-Control-Allow-Origin", "*") 149 + } 150 + })) 146 151 147 152 export default app