-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dioxus.toml
54 lines (37 loc) · 891 Bytes
/
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
[application]
# App (Project) Name
name = "powers-couter"
# Dioxus App Default Platform
# desktop, web, mobile, ssr
default_platform = "web"
# `build` & `serve` dist path
out_dir = "static"
# resource (public) file folder
asset_dir = "public"
binaryen = { wasm_opt = true }
[web.app]
# HTML title tag content
title = "Power Scouter 🐉 Powerlifting scores calculator"
[web.watcher]
# when watcher trigger, regenerate the `index.html`
reload_html = true
# which files or dirs will be watcher monitoring
watch_path = ["src", "public"]
# include `assets` in web platform
[web.resource]
# CSS style file
style = [
"/styles/button.css",
"/styles/field.css",
"/styles/header.css",
"/styles/index.css",
"/styles/score.css",
]
# Javascript code file
script = []
[web.resource.dev]
# serve: [dev-server] only
# CSS style file
style = []
# Javascript code file
script = []