-
Notifications
You must be signed in to change notification settings - Fork 10
Open
Description
Although I specified the env file, for some reason the code:
src/constants/rpc.ts
export const RPC_URL =
IS_EMBEDDED === "true"
? window.location.origin
: window.RPC_URL ?? import.meta.env.VITE_RPC_URL;Wasn't picking up my RPC URL.
I had to update that line to:
export const RPC_URL = import.meta.env.VITE_RPC_URL;For it to work
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels