74 lines
1.1 KiB
TOML
74 lines
1.1 KiB
TOML
![]() |
[application]
|
||
|
|
||
|
# dioxus project name
|
||
|
name = "Radioxide"
|
||
|
|
||
|
# default platfrom
|
||
|
# you can also use `dx serve/build --platform XXX` to use other platform
|
||
|
# value: web | desktop
|
||
|
default_platform = "web"
|
||
|
|
||
|
# Web `build` & `serve` dist path
|
||
|
out_dir = "dist"
|
||
|
|
||
|
# resource (static) file folder
|
||
|
asset_dir = "public"
|
||
|
|
||
|
[web.app]
|
||
|
|
||
|
# HTML title tag content
|
||
|
title = "Radioxide | Fully Oxidised Radio"
|
||
|
|
||
|
[web.watcher]
|
||
|
|
||
|
index_on_404 = true
|
||
|
|
||
|
watch_path = ["src", "examples"]
|
||
|
|
||
|
# include `assets` in web platform
|
||
|
[web.resource]
|
||
|
|
||
|
# CSS style file
|
||
|
style = []
|
||
|
|
||
|
# Javascript code file
|
||
|
script = []
|
||
|
|
||
|
[web.resource.dev]
|
||
|
|
||
|
# Javascript code file
|
||
|
# serve: [dev-server] only
|
||
|
script = []
|
||
|
|
||
|
[application.plugins]
|
||
|
|
||
|
available = true
|
||
|
|
||
|
required = []
|
||
|
|
||
|
[bundler]
|
||
|
# Bundle identifier
|
||
|
identifier = "io.github.Radioxide"
|
||
|
|
||
|
# Bundle publisher
|
||
|
publisher = "Radioxide"
|
||
|
|
||
|
# Bundle icon
|
||
|
icon = ["icons/icon.png"]
|
||
|
|
||
|
# Bundle resources
|
||
|
resources = ["public/*"]
|
||
|
|
||
|
# Bundle copyright
|
||
|
copyright = ""
|
||
|
|
||
|
# Bundle category
|
||
|
category = "Utility"
|
||
|
|
||
|
# Bundle short description
|
||
|
short_description = "Online Radio Streaming."
|
||
|
|
||
|
# Bundle long description
|
||
|
long_description = """
|
||
|
Online Radio Streaming Platform.
|
||
|
"""
|