Qortora · Search · Indexed page
docs.zephyr-cloud.ioFetched 2026-08-25T20:49:27Z
Rolldown - Zephyr Cloud Docs
Deploy Rolldown applications to Zephyr Cloud with blazing-fast Rust-powered next-generation bundling.
Open original source · Full cached text
Rolldown - Zephyr Cloud Docs Zephyr Cloud Docs SearchZephyr Cloud → Theme MenuON THIS PAGE Getting Started Overview Prerequisites Quick Start Find Your SDK FAQ AI Zephyr API MCP Features & Workflows Organization Structure Versions Version Statuses Tags & Environments Locking Tags & Environments Instant Rollbacks React Native OTA Updates (Beta) Remote Dependencies Deployment Hooks Structured File Logs Personal token deployments Server token deployments Environment Overrides Teams & Members Subscriptions Multi-Organization Subscriptions Migrations Server tokens to CI tokens Development Tools create-zephyr-apps Zephyr Codemod Zephyr Sidepanel Zephyr Devtools Module Federation Devtools Bundler Guides Webpack Rspack Rsbuild Vite Rolldown Rollup Parcel Re.Pack (React Native) Metro (React Native) Meta Frameworks Astro Ember.js ModernJS Nitro Nuxt Rspress Rslib TanStack Start Cloud Providers Akamai AWS Cloudflare Fastly Kubernetes Updating Integrations Integration Guides React + Vite React + Rsbuild React + Rspack + Nx React Native + Re.Pack Multi-bundler Setup Existing App Migration Tutorials Your First App Adding Micro-Frontends Complete MF Guide Rsbuild MF Monorepo React Native with Metro End-to-End Testing Reference Declarative Configuration Additional Resources Why Zephyr Cloud Architecture SSR Worker (beta) IP Allowlists Troubleshooting Build ZE10010 ZE10011 ZE10013 ZE10014 ZE10015 ZE10016 ZE10017 ZE10018 ZE10019 ZE10022 ZE10023 ZE10024 ZE10032 Deploy ZE20010 ZE20011 ZE20012 ZE20013 ZE20014 ZE20017 ZE20019 ZE20020 ZE20022 ZE20023 ZE20024 ZE20037 Browser ZE30026 Config ZE40001 ZE40003 ZE40005 ZE40006 ZE40035 #Rolldown Copy Markdown Deploy your Rolldown applications to Zephyr Cloud with blazing-fast Rust-powered bundling. The Zephyr Rolldown plugin integrates seamlessly with Rolldown's next-generation bundler. Work in Progress Rolldown is under heavy development right now. Features and APIs may change. Prerequisites Finished our Prerequisites setup guide Installed our Chrome extension Quick Setup with Codemod npm yarn pnpm bun npx with-zephyr yarn dlx with-zephyr pnpx with-zephyr bunx with-zephyr This detects your bundler and configures Zephyr automatically. Learn more → For manual setup, continue below. #Installation Install the Rolldown plugin in your project: npm yarn pnpm bun deno npm add --dev zephyr-rolldown-plugin yarn add --dev zephyr-rolldown-plugin pnpm add --dev zephyr-rolldown-plugin bun add --dev zephyr-rolldown-plugin deno add --dev npm:zephyr-rolldown-plugin #Quick Start To add Zephyr to a Rolldown application, add the plugin to your Rolldown configuration. // rolldown.config.ts import { defineConfig } from 'rolldown'; import { withZephyr } from 'zephyr-rolldown-plugin'; export default defineConfig({ input: 'src/main.tsx', output: { dir: 'dist', format: 'esm', }, plugins: [ { name: 'emit-html', generateBundle() { this.emitFile({ type: 'asset', fileName: 'index.html', source: ` <!DOCTYPE html> <html> <head> <title>My App</title> </head> <body> <div id="root"></div> <script type="module" src="./main.js"></script> </body> </html> `, }); }, }, withZephyr(), ], }); 📝 Edit this pageLast Updated: 8/6/2026, 4:48:17 PM Previous pageViteNext pageRollup ON THIS PAGE InstallationQuick Start Back to top Discord LinkedIn Blog Pricing FAQs Contact System status © 2026 Zephyr Cloud. All rights reserved.