1
0

Dioxus.toml 478 B

123456789101112131415161718192021222324252627
  1. [application]
  2. # App (Project) Name
  3. name = "dioxus-pwa-example"
  4. # Dioxus App Default Platform
  5. # desktop, web, mobile, ssr
  6. default_platform = "web"
  7. # `build` & `serve` dist path
  8. out_dir = "dist"
  9. # resource (public) file folder
  10. asset_dir = "public"
  11. [web.app]
  12. # HTML title tag content
  13. title = "dioxus | ⛺"
  14. [web.watcher]
  15. # when watcher trigger, regenerate the `index.html`
  16. reload_html = true
  17. # which files or dirs will be watcher monitoring
  18. watch_path = ["src", "public"]