1234567891011121314151617181920212223242526272829303132333435 |
- [application]
- # dioxus project name
- name = "OpenID Connect authentication demo"
- # default platform
- # you can also use `dioxus serve/build --platform XXX` to use other platform
- # value: web | desktop
- default_platform = "web"
- # Web `build` & `serve` dist path
- out_dir = "dist"
- # resource (static) file folder
- asset_dir = "public"
- # hot reload by default
- hot_reload = true
- [web.app]
- # HTML title tag content
- title = "OpenID Connect authentication demo"
- [web.watcher]
- index_on_404 = true
- watch_path = ["src"]
- [application.plugins]
- available = true
- required = []
|