-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDioxus.toml
43 lines (28 loc) · 813 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
[application]
# App (Project) Name
name = "smp-fs"
# Dioxus App Default Platform
# desktop, web
default_platform = "web"
# `build` & `serve` dist path
out_dir = "dist"
# resource (assets) file folder
asset_dir = "assets"
[web.app]
# HTML title tag content
title = "Sigmanauts Mining Pool"
[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 = ["tailwind.css"]
# Javascript code file
script = ["https://cdn.jsdelivr.net/npm/[email protected]/dist/echarts.min.js", "https://cdn.jsdelivr.net/npm/[email protected]/dist/echarts-gl.min.js"]
[web.resource.dev]
# Javascript code file
# serve: [dev-server] only
script = []