We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cloudflare
The following code doesn't work on Cloudflare because dynamic is false
dynamic
false
const jwtType = t.Object({ id: t.Number(), }); export const authPlugin = new Elysia({ name: "authPlugin" }).use( jwt({ secret: "yay", name: "jwt", exp: "20m", schema: jwtType, }) );
This function call missing dynamic parameter:
elysia-jwt/src/index.ts
Line 100 in 67078d5
Cloudflare error:
EvalError: Code generation from strings disallowed for this context
reported on discord
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
The following code doesn't work on
Cloudflare
becausedynamic
isfalse
This function call missing
dynamic
parameter:elysia-jwt/src/index.ts
Line 100 in 67078d5
Cloudflare error:
reported on discord
The text was updated successfully, but these errors were encountered: