This repository was archived by the owner on Jul 25, 2026. It is now read-only.
Replies: 1 comment 1 reply
|
You most likely need to specify You need to add it at the top of your Route Handler Regarding 404 – make sure the |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hello,
I'm trying to deploy my app on Vercel, however it results in a 404 when I try to access it.
Copying the example's tsconfig with moduleResolution and module set to
NodeNextseems to break my imports.Specifically I'm trying to import from zora's sdk:
the tsconfig.json that works for me locally
{ "compilerOptions": { "target": "ESNext", "module": "ESNext", "skipLibCheck": true, "esModuleInterop": true, "moduleResolution": "Node", "resolveJsonModule": true, "isolatedModules": true, "jsx": "react-jsx", "jsxImportSource": "frog/jsx", /* Linting */ "strict": true, "noUnusedLocals": true, "noUnusedParameters": true, "noFallthroughCasesInSwitch": true, "types": ["frog/client"] }, "include": ["**/*.ts", "**/*.tsx", "**/*.mtsx"] }Forgive me if it's a stupid question as I'm new to typescript programming.
PS. Your discord invite link on the website is expired
All reactions