-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDioxus.toml
More file actions
45 lines (38 loc) · 1 KB
/
Copy pathDioxus.toml
File metadata and controls
45 lines (38 loc) · 1 KB
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
[application]
name = "enerby.dev"
default_platform = "web"
# Web App Configuration
[web.app]
# HTML title tag content
title = "enerby.dev | Full-Stack Developer"
# Base path (for GitHub Pages, set to "/repo-name")
base_path = ""
# File Watcher Configuration
[web.watcher]
watch_path = ["src", "assets"]
reload_html = true
# Exclude target folder to prevent rebuild loops
index_on_404 = true
# Static Resources - CSS se maneja con asset!() en código Rust
[web.resource]
# CSS se incluye via document::Stylesheet en App() - método oficial Dioxus
style = []
# JavaScript files (none for pure Rust)
script = []
# Dev-only resources
[web.resource.dev]
script = []
# Bundle Configuration
[bundle]
identifier = "dev.enerby.portfolio"
publisher = "enerBydev"
icon = ["assets/icons/icon.png"]
resources = ["assets/*"]
# Minification & Optimization (P14-A3)
[web.build]
# Enable minification for release builds
minify = true
# Output directory
out_dir = "dist"
# SSG Configuration (P14-C1)
# Build with: dx build --release --ssg