1
0

Dioxus.toml 425 B

1234567891011121314151617181920212223242526
  1. [application]
  2. # App name
  3. name = "project_name"
  4. # `build` & `serve` output path
  5. out_dir = "dist"
  6. # The static resource path
  7. asset_dir = "public"
  8. [web.app]
  9. # HTML title tag content
  10. title = "project_name"
  11. [web.watcher]
  12. # When watcher is triggered, regenerate the `index.html`
  13. reload_html = true
  14. # Which files or dirs will be monitored
  15. watch_path = ["src", "public"]
  16. [[web.proxy]]
  17. backend = "http://localhost:8000/api/"