Dioxus.toml 571 B

1234567891011121314151617181920212223242526272829303132333435
  1. [application]
  2. # dioxus project name
  3. name = "OpenID Connect authentication demo"
  4. # default platform
  5. # you can also use `dioxus serve/build --platform XXX` to use other platform
  6. # value: web | desktop
  7. default_platform = "web"
  8. # Web `build` & `serve` dist path
  9. out_dir = "dist"
  10. # resource (static) file folder
  11. asset_dir = "public"
  12. # hot reload by default
  13. hot_reload = true
  14. [web.app]
  15. # HTML title tag content
  16. title = "OpenID Connect authentication demo"
  17. [web.watcher]
  18. index_on_404 = true
  19. watch_path = ["src"]
  20. [application.plugins]
  21. available = true
  22. required = []