-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dioxus.toml
78 lines (54 loc) · 1.2 KB
/
Dioxus.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[application]
# dioxus project name
name = "Freemail"
# 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 = "Freemail"
[web.watcher]
reload_html = true
index_on_404 = true
watch_path = ["src", "public/assets"]
# include `assets` in web platform
[web.resource]
# CSS style file
style = [
"./assets/css/style.css",
"./assets/css/inbox.css",
"./assets/css/dark.css",
]
# Javascript code file
script = []
[web.resource.dev]
# Javascript code file
# serve: [dev-server] only
script = []
[application.plugins]
available = true
required = []
[bundler]
# Bundle identifier
identifier = ""
# Bundle publisher
publisher = ""
# Bundle icon
icon = ["icons/icon.png"]
# Bundle resources
resources = ["public/*"]
# Bundle copyright
copyright = ""
# Bundle category
category = "Utility"
# Bundle short description
short_description = "Take back your inbox with Freemail!"
# Bundle long description
long_description = """
Freemail - email the way it should have always been
"""