12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- [application]
- # App name
- name = "project_name"
- # The Dioxus platform to default to
- default_platform = "web"
- # `build` & `serve` output path
- out_dir = "dist"
- # The static resource path
- asset_dir = "public"
- [web.app]
- # HTML title tag content
- title = "project_name"
- [web.watcher]
- # When watcher is triggered, regenerate the `index.html`
- reload_html = true
- # Which files or dirs will be monitored
- watch_path = ["src", "public"]
- # Include style or script assets
- [web.resource]
- # CSS style file
- style = []
- # Javascript code file
- script = []
- [web.resource.dev]
- # Same as [web.resource], but for development servers
- # CSS style file
- style = []
- # JavaScript files
- script = []
- [[web.proxy]]
- backend = "http://localhost:8000/api/"
- # [cli_settings]
- # always_hot_reload = true
- # always_open_browser = true
|