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
{{ message }}
This repository was archived by the owner on Jun 22, 2025. It is now read-only.
Eel version
I am using eel 0.11.0 with python 3.8.
Describe the bug
When adding a own app, none of the routes that are required for eel to work are served anymore.
To Reproduce
Run the following code-snippet:
app=bottle.Bottle()
eel.init('web', allowed_extensions=['.js', '.html'])
defonclose(page, sockets):
pass# This is not strictly neccesary to break eel, it even won't work without if.@app.route('/<site>/')defredirect_to_index(site):
bottle.redirect('/{}/index.html'.format(site))
eel.start(
close_callback=onclose,
app=app)
Expected behavior
Even when specifying a custom app, bottle should still serve eel's own routes.
Additional context
This is related to the changes introduced in #203