123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- [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/"
|