Skip to content

Commit 882b314

Browse files
update links to pywebview documentation (fixes #4829)
1 parent 786d568 commit 882b314

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

website/documentation/content/section_configuration_deployment.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ def urls_demo():
2929
You can enable native mode for NiceGUI by specifying `native=True` in the `ui.run` function.
3030
To customize the initial window size and display mode, use the `window_size` and `fullscreen` parameters respectively.
3131
Additionally, you can provide extra keyword arguments via `app.native.window_args` and `app.native.start_args`.
32-
Pick any parameter as it is defined by the internally used [pywebview module](https://pywebview.flowrl.com/guide/api.html)
32+
Pick any parameter as it is defined by the internally used [pywebview module](https://pywebview.flowrl.com/api)
3333
for the `webview.create_window` and `webview.start` functions.
3434
Note that these keyword arguments will take precedence over the parameters defined in `ui.run`.
3535
3636
Additionally, you can change `webview.settings` via `app.native.settings`.
3737
3838
In native mode the `app.native.main_window` object allows you to access the underlying window.
39-
It is an async version of [`Window` from pywebview](https://pywebview.flowrl.com/guide/api.html#window-object).
39+
It is an async version of [`Window` from pywebview](https://pywebview.flowrl.com/api/#webview-window).
4040
''', tab=lambda: ui.label('NiceGUI'))
4141
def native_mode_demo():
4242
from nicegui import app

0 commit comments

Comments
 (0)