this repo has no description
at main 49 lines 807 B view raw
1[application] 2 3# Web `build` & `serve` dist path 4out_dir = "dist" 5 6# resource (static) file folder 7asset_dir = "public" 8 9[web.wasm_opt] 10# The level wasm-opt should target. z is the smallest. 4 is the fastest. 11level = "4" 12 13[web.app] 14 15# HTML title tag content 16title = "Dioxus | An elegant GUI library for Rust" 17 18[web.watcher] 19 20index_on_404 = true 21 22watch_path = ["src", "examples"] 23 24[bundle] 25# Bundle identifier 26identifier = "io.github.magic" 27 28# Bundle publisher 29publisher = "magic" 30 31# Bundle icon 32icon = ["icons/icon.png"] 33 34# Bundle resources 35resources = ["public/*"] 36 37# Bundle copyright 38copyright = "" 39 40# Bundle category 41category = "Utility" 42 43# Bundle short description 44short_description = "An amazing dioxus application." 45 46# Bundle long description 47long_description = """ 48An amazing dioxus application. 49"""