mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-22 20:23:09 +00:00
26 lines
425 B
TOML
26 lines
425 B
TOML
[application]
|
|
|
|
# App name
|
|
name = "project_name"
|
|
|
|
# `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"]
|
|
|
|
[[web.proxy]]
|
|
backend = "http://localhost:8000/api/"
|