跳到內容

Deploy your Astro Site to Zephyr Cloud

本頁內容尚未翻譯。

You can use Zephyr Cloud to deploy an Astro site with intelligent asset management, comprehensive build analytics, and first-class support for Module Federation architectures.

Zephyr operates on a Bring Your Own Cloud (BYOC) model, deploy to your choice of supported clouds through a unified interface without vendor lock-in. Switch providers anytime without changing your deployment workflow.

  1. Add the Zephyr integration to your Astro project with the following command. This will install the integration and update your astro.config.mjs file automatically:

    Terminal window
    npx with-zephyr@latest
  2. Build and deploy your Astro site:

    Terminal window
    npm run build
  3. Your application is deployed! Zephyr will provide a deployment URL and comprehensive build analytics.

  1. Install the Zephyr Astro integration:

    Terminal window
    npm install zephyr-astro-integration
  2. Add the integration to your astro.config.mjs:

    import { defineConfig } from 'astro/config';
    import { withZephyr } from 'zephyr-astro-integration';
    export default defineConfig({
    integrations: [
    withZephyr(),
    ],
    });
  3. Build and deploy your Astro site:

    Terminal window
    npm run build
  4. Your application is deployed! Zephyr will provide a deployment URL and comprehensive build analytics.

For more detialed information refer to the Zephyr Cloud documentation on deploying with Astro.

When you build your Astro site with the Zephyr integration, the following process occurs:

  1. Build Context Extraction: Zephyr captures Git information (commit, branch, author) and package metadata
  2. Asset Hashing: All build outputs are hashed using SHA-256 for content-addressable storage
  3. Delta Detection: Zephyr queries the CDN edge to identify which assets already exist
  4. Optimized Upload: Only new or modified assets are uploaded
  5. Snapshot Creation: An immutable deployment snapshot is created with all asset references
  6. Analytics Upload: Build statistics, module graphs, and dependency information are sent to the dashboard
  7. CDN Deployment: Assets are published to your configured CDN with permanent cache headers

更多部署指南

貢獻 社群 贊助