dioxus.toml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. [application]
  2. # dioxus project name
  3. name = "{{project-name}}"
  4. # default platfrom
  5. # you can also use `dx serve/build --platform XXX` to use other platform
  6. # value: web | desktop
  7. default_platform = "{{default-platform}}"
  8. # Web `build` & `serve` dist path
  9. out_dir = "dist"
  10. # resource (static) file folder
  11. asset_dir = "public"
  12. [web.app]
  13. # HTML title tag content
  14. title = "Dioxus | An elegant GUI library for Rust"
  15. [web.watcher]
  16. index_on_404 = true
  17. watch_path = ["src", "examples"]
  18. # include `assets` in web platform
  19. [web.resource]
  20. # CSS style file
  21. style = []
  22. # Javascript code file
  23. script = []
  24. [web.resource.dev]
  25. # Javascript code file
  26. # serve: [dev-server] only
  27. script = []
  28. [application.plugins]
  29. available = true
  30. required = []
  31. [bundler]
  32. # Bundle identifier
  33. identifier = "io.github.{{project-name}}"
  34. # Bundle publisher
  35. publisher = "{{project-name}}"
  36. # Bundle icon
  37. icon = ["icons/icon.png"]
  38. # Bundle resources
  39. resources = ["public/*"]
  40. # Bundle copyright
  41. copyright = ""
  42. # Bundle category
  43. category = "Utility"
  44. # Bundle short description
  45. short_description = "An amazing dioxus application."
  46. # Bundle long description
  47. long_description = """
  48. An amazing dioxus application.
  49. """