12 lines
327 B
TOML
12 lines
327 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 = "rm"
|
|
command_arguments = ["../backend/static/wasm/.stage/index.html"]
|