-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDioxus.toml
44 lines (39 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
[application]
name = "dioxus-desktop-template"
default_platform = "desktop"
out_dir = "dist"
asset_dir = "assets"
[web.app]
title = "dioxus-desktop-template | 🖥️"
[web.watcher]
# when watcher trigger, regenerate the `index.html`
reload_html = true
# which files or dirs will be watcher monitoring
watch_path = ["src", "assets"]
[web.resource]
# CSS style file
style = ["tailwind.css"]
# Javascript code file
script = []
[web.resource.dev]
# CSS style file
style = []
# Javascript code file
script = []
# FIXME: Need to `cd assets` before running `dx bundle` due to https://github.com/DioxusLabs/dioxus/issues/1283
[bundle]
name = "dioxus-desktop-template"
identifier = "ca.srid.dioxus-desktop-template"
icon = ["dioxus.png"]
version = "1.0.0"
resources = ["**/tailwind.css", "**/*.png"]
copyright = "Copyright (c) Sridhar Ratnakumar. All rights reserved."
category = "Developer Tool"
short_description = "WIP: your description goes here"
long_description = """
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut
enim ad minim veniam, quis nostrud exercitation ullamco laboris
nisi ut aliquip ex ea commodo consequat.
"""
osx_frameworks = []