12 lines
335 B
TOML
12 lines
335 B
TOML
[build]
|
|
dist = "../backend/static/wasm"
|
|
public_url = "/static"
|
|
filehash = false
|
|
minify = "on_release"
|
|
|
|
# Here we don't want the file 'index.html' in the final directory.
|
|
# Is there a way to not generate it at first?
|
|
[[hooks]]
|
|
stage = "post_build"
|
|
command = "nu"
|
|
command_arguments = ["-c 'rm ../backend/static/wasm/.stage/index.html'"]
|