app.mount("/dashboard", marimo_dev_server.build())
marimo_dev_server = marimo.create_asgi_app().with_app(path="/", root="notebooks/dev.py")
.marimo.toml
inside the root directory of the FastAPI app, and in a few other directories as well, but it never did anything.data-config
looks like when loading the app. As you can see, the follow_symlink
is false
even though the .marimo.toml
would set it to true
.follow_symlink
in the first place is that the page is not loading correctly on Chromium browsers, whereas on Firefox it loads normally. On Chromium, the root
div just stays empty, while in Firefox, it gets populated after a while, when the hourglass icon stops spinning. On Chromium, there is not even an hourglass icon.<link rel=preload> has an invalid href value
follow_symlink
shouldnt effect the browser. so if it works in Firefox, that likely isn't the issuefollow_symlink
to be true either, so there may be another issue<link rel=preload>
might be a redherring. if you look at your network tools, do you see any 404s coming from your server? if you look at the HTML returned, is something being stripped from the link tags? does it look the same in firefox?