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
For example, when the mountable code is used in http://localhost:3000/test.html, the URL will be overwritten to http://localhost:3000/test.html/ on which the trailing slash / is added.
This behavior is originally necessary for page transitions on MPA (ref: #176, https://github.com/streamlit/streamlit/blob/1.12.2/frontend/src/App.tsx#L656-L665 ), but it became a problem in the case of stlite, which can be accessed through URLs endings with *.html.
So, a special care for such cases is needed.
The text was updated successfully, but these errors were encountered:
For example, when the mountable code is used in
http://localhost:3000/test.html
, the URL will be overwritten tohttp://localhost:3000/test.html/
on which the trailing slash/
is added.This behavior is originally necessary for page transitions on MPA (ref: #176, https://github.com/streamlit/streamlit/blob/1.12.2/frontend/src/App.tsx#L656-L665 ), but it became a problem in the case of stlite, which can be accessed through URLs endings with
*.html
.So, a special care for such cases is needed.
The text was updated successfully, but these errors were encountered: