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
46
47
48
49
50
51
52
53
# Trunk configuration for skill-web
# https://trunkrs.dev/configuration/
[]
# The index HTML file to drive the bundling process
= "index.html"
# The output directory for all final build artifacts
= "dist"
# Run without network access
= false
# Require Cargo.lock and cache are up to date
= false
# Build in release mode
= false
# Minify JavaScript
= "never"
[]
# Paths to watch for changes
= ["src", "index.html", "input.css", "tailwind.config.js"]
# Files to ignore (only include paths that exist)
= ["dist"]
[]
# The address to serve on
= ["127.0.0.1"]
# The port to serve on
= 8080
# Open browser on start
= false
# Enable auto-reload
= true
# Disable request logging
= false
# Proxy API requests to the backend
[[]]
# URL prefix to proxy
= "/api"
# Backend address
= "http://127.0.0.1:3000/api"
# WebSocket proxy for real-time updates
[[]]
= "/ws"
= "http://127.0.0.1:3000/ws"
= true
[]
# Use wasm-bindgen from cargo
= "0.2.106"
# Note: clean configuration removed (not supported in trunk 0.21+)