Faster Deploys & Precompression
Β· One min read
Hi π
A new release is out β v0.0.54
π
Here are a few highlights:
β‘οΈ Faster deploys with proposals batching
π¦ Smarter precompression (optional Brotli + replace mode)
π Redirects fixed
β¨ Shinier experience when deploying in your terminal
Checkout the release notes for details π Release v0.0.54 Β· junobuild/juno
Example of the new configuration option precompress
:
export default defineConfig({
satellite: {
ids: {
production: "qsgjb-riaaa-aaaaa-aaaga-cai"
},
source: "dist",
precompress: {
algorithm: "brotli",
pattern: "**/*.+(css|js|mjs|html)",
mode: "replace"
}
}
});