Skip to main content

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"
}
}
});