44 lines
835 B
TOML
44 lines
835 B
TOML
[application]
|
|
# App (Project) Name
|
|
name = "Mumble Web 2"
|
|
# Dioxus App Default Platform
|
|
default_platform = "web"
|
|
# `build` & `serve` dist path
|
|
out_dir = "dist"
|
|
# resource (public) file folder
|
|
asset_dir = "public"
|
|
|
|
[web.app]
|
|
# HTML title tag content
|
|
title = "Mumble Web 2"
|
|
|
|
[web.watcher]
|
|
# when watcher trigger, regenerate the `index.html`
|
|
reload_html = true
|
|
# which files or dirs will be watcher monitoring
|
|
watch_path = ["src", "assets"]
|
|
|
|
# include `assets` in web platform
|
|
[web.resource]
|
|
# CSS style file
|
|
style = []
|
|
# Javascript code file
|
|
script = []
|
|
|
|
[web.resource.dev]
|
|
# serve: [dev-server] only
|
|
# CSS style file
|
|
style = []
|
|
# Javascript code file
|
|
script = []
|
|
|
|
[bundle]
|
|
identifier = "xyz.ohea.mumble-web-2"
|
|
publisher = "OheaCorp"
|
|
icon = [
|
|
"icons/32x32.png",
|
|
"icons/256x256.png",
|
|
"gui/assets/favicon.ico",
|
|
"icons/icon.icns",
|
|
]
|