You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Zapper Safe app can only be deployed on domain root
The problem
We are having some issues because some assets and redirects are tied to app being served on a root domain. This is an issue when you try to deploy the app on IPFS as domains are usually following this style: https://ipfs.io/ipfs/{ipfs_hash}
Zapper Safe app can only be deployed on domain root
The problem
We are having some issues because some assets and redirects are tied to app being served on a root domain. This is an issue when you try to deploy the app on IPFS as domains are usually following this style:
https://ipfs.io/ipfs/{ipfs_hash}
The app tries to fetch resources from:
https://ipfs.io/{resource}
When it should be trying to fetch it from:
https://ipfs.io/ipfs/{ipfs_hash}/{resource}
Solution
Serving static files using relative path instead of global path
Be careful with internal app redirects, they are also tied to global path
Thank you!
The text was updated successfully, but these errors were encountered: