1
0

Dioxus.toml 487 B

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