- Use data-trunk directive for CSS processing instead of manual copy - Enable automatic content hashing and cache busting for styles.css - Remove unused CalendarInfo import to fix compiler warning - Simplify Trunk.toml by removing redundant copy configuration This ensures styles.css is properly copied and processed on every build with automatic cache invalidation when styles change. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
17 lines
243 B
TOML
17 lines
243 B
TOML
[build]
|
|
target = "index.html"
|
|
dist = "dist"
|
|
|
|
[env]
|
|
BACKEND_API_URL = "http://localhost:3000/api"
|
|
|
|
[watch]
|
|
watch = ["src", "Cargo.toml", "styles.css", "index.html"]
|
|
ignore = ["backend/"]
|
|
|
|
[serve]
|
|
address = "127.0.0.1"
|
|
port = 8080
|
|
open = false
|
|
|