From c96597e572188874c2e62fa3dc964d672f707426 Mon Sep 17 00:00:00 2001 From: sarahrainsberger Date: Tue, 18 Nov 2025 20:41:22 +0000 Subject: [PATCH 01/24] update english deploy guides with service and scaffold new test component --- src/components/DeployGuidesNavAlpha.astro | 93 +++++++++++++++++++ src/content.config.ts | 3 + src/content/docs/en/guides/deploy/aws.mdx | 1 + src/content/docs/en/guides/deploy/azion.mdx | 1 + src/content/docs/en/guides/deploy/buddy.mdx | 1 + src/content/docs/en/guides/deploy/cleavr.mdx | 1 + .../docs/en/guides/deploy/clever-cloud.mdx | 1 + .../docs/en/guides/deploy/cloudflare.mdx | 1 + .../docs/en/guides/deploy/cloudray.mdx | 1 + src/content/docs/en/guides/deploy/deno.mdx | 1 + .../docs/en/guides/deploy/deployhq.mdx | 1 + src/content/docs/en/guides/deploy/fleek.mdx | 1 + .../docs/en/guides/deploy/flightcontrol.mdx | 1 + src/content/docs/en/guides/deploy/flyio.mdx | 1 + src/content/docs/en/guides/deploy/github.mdx | 2 + src/content/docs/en/guides/deploy/gitlab.mdx | 1 + .../docs/en/guides/deploy/google-cloud.mdx | 1 + .../docs/en/guides/deploy/google-firebase.mdx | 1 + src/content/docs/en/guides/deploy/heroku.mdx | 1 + src/content/docs/en/guides/deploy/index.mdx | 4 +- src/content/docs/en/guides/deploy/juno.mdx | 1 + src/content/docs/en/guides/deploy/kinsta.mdx | 1 + .../docs/en/guides/deploy/microsoft-azure.mdx | 1 + src/content/docs/en/guides/deploy/netlify.mdx | 1 + src/content/docs/en/guides/deploy/railway.mdx | 1 + src/content/docs/en/guides/deploy/render.mdx | 1 + src/content/docs/en/guides/deploy/seenode.mdx | 1 + src/content/docs/en/guides/deploy/sst.mdx | 1 + .../docs/en/guides/deploy/stormkit.mdx | 1 + src/content/docs/en/guides/deploy/surge.mdx | 1 + src/content/docs/en/guides/deploy/vercel.mdx | 1 + src/content/docs/en/guides/deploy/zeabur.mdx | 1 + src/content/docs/en/guides/deploy/zephyr.mdx | 1 + src/content/docs/en/guides/deploy/zerops.mdx | 1 + 34 files changed, 130 insertions(+), 2 deletions(-) create mode 100644 src/components/DeployGuidesNavAlpha.astro diff --git a/src/components/DeployGuidesNavAlpha.astro b/src/components/DeployGuidesNavAlpha.astro new file mode 100644 index 0000000000000..51f46174ca78f --- /dev/null +++ b/src/components/DeployGuidesNavAlpha.astro @@ -0,0 +1,93 @@ +--- +import { englishPages } from '~/content'; +import { getLanguageFromURL } from '~/util/path-utils'; +import { isDeployEntry } from '~/content.config'; +import CardsNav from './NavGrid/CardsNav.astro'; +import type { LogoKey } from '~/data/logos'; +import { isLogoKey } from '~/data/logos'; + +// export interface Props { +// minimal?: boolean; +// } + + +// const { minimal } = Astro.props as Props; + +const lang = getLanguageFromURL(Astro.url.pathname); +const enPages = englishPages.filter(isDeployEntry); + + + + +const links = enPages + .sort((a, b) => { + // Sort alphabetically. + return a.data.service.toLowerCase() > b.data.service.toLowerCase() ? 1 : -1; + }) + .map((page) => { + const { type } = page.data; + const pageUrl = '/' + page.id.replace('en/', `${lang}/`) + '/'; + const logo = isLogoKey(page.id.split('/').pop()); + return { title: service, href: pageUrl, logo }; + }); + +// interface Service { +// title: string; +// slug: LogoKey; +// supports: ['ssr', 'static'] | ['ssr'] | ['static']; +// } + +// const services: Service[] = [ +// { title: 'Netlify', slug: 'netlify', supports: ['ssr', 'static'] }, +// { title: 'Vercel', slug: 'vercel', supports: ['ssr', 'static'] }, +// { title: 'Deno Deploy', slug: 'deno', supports: ['ssr', 'static'] }, +// { title: 'GitHub Pages', slug: 'github', supports: ['static'] }, +// { title: 'GitLab Pages', slug: 'gitlab', supports: ['static'] }, +// { title: 'Cloudflare Pages', slug: 'cloudflare', supports: ['ssr', 'static'] }, +// { title: 'AWS', slug: 'aws', supports: ['ssr', 'static'] }, +// { title: 'AWS via Flightcontrol', slug: 'flightcontrol', supports: ['ssr', 'static'] }, +// { title: 'AWS via SST', slug: 'sst', supports: ['ssr', 'static'] }, +// { title: 'Clever Cloud', slug: 'clever-cloud', supports: ['ssr', 'static'] }, +// { title: 'Azion', slug: 'azion', supports: ['ssr', 'static'] }, +// { title: 'Google Cloud', slug: 'google-cloud', supports: ['ssr', 'static'] }, +// { title: 'Google Firebase', slug: 'google-firebase', supports: ['ssr', 'static'] }, +// { title: 'Heroku', slug: 'heroku', supports: ['static'] }, +// { title: 'Microsoft Azure', slug: 'microsoft-azure', supports: ['static'] }, +// { title: 'Buddy', slug: 'buddy', supports: ['static'] }, +// { title: 'DeployHQ', slug: 'deployhq', supports: ['static'] }, +// { title: 'Fleek', slug: 'fleek', supports: ['static'] }, +// { title: 'Fly.io', slug: 'flyio', supports: ['ssr', 'static'] }, +// { title: 'Juno', slug: 'juno', supports: ['static'] }, +// { title: 'Railway', slug: 'railway', supports: ['ssr', 'static'] }, +// { title: 'Render', slug: 'render', supports: ['static'] }, +// { title: 'Stormkit', slug: 'stormkit', supports: ['static'] }, +// { title: 'Surge', slug: 'surge', supports: ['static'] }, +// { title: 'Cleavr', slug: 'cleavr', supports: ['ssr', 'static'] }, +// { title: 'Kinsta', slug: 'kinsta', supports: ['ssr', 'static'] }, +// { title: 'Zeabur', slug: 'zeabur', supports: ['ssr', 'static'] }, +// { title: 'Zerops', slug: 'zerops', supports: ['ssr', 'static'] }, +// { title: 'CloudRay', slug: 'cloudray', supports: ['static'] }, +// { title: 'Seenode', slug: 'seenode', supports: ['ssr'] }, +// { title: 'Zephyr', slug: 'zephyr', supports: ['static'] }, +// ]; + +// +--- + +

I am a grid

+ +
+ +
+ +{/* + ({ + title, + href: `/${lang}/guides/deploy/${slug}/`, + logo: slug, + tags: Object.fromEntries(supports.map((s) => [s, Astro.locals.t(`deploy.${s}Tag`)!])), + }))} +/> +*/} \ No newline at end of file diff --git a/src/content.config.ts b/src/content.config.ts index 4468f44b47ff1..068ec9e9b85b7 100644 --- a/src/content.config.ts +++ b/src/content.config.ts @@ -23,6 +23,7 @@ export const baseSchema = z.object({ export const deploySchema = baseSchema.extend({ type: z.literal('deploy'), + service: z.string(), }); export const backendSchema = baseSchema.extend({ @@ -121,6 +122,8 @@ export const isBackendEntry = createIsDocsEntry('backend'); export const isCmsEntry = createIsDocsEntry('cms'); +export const isDeployEntry = createIsDocsEntry('deploy'); + export const isIntegrationEntry = createIsDocsEntry('integration'); export const isTutorialEntry = createIsDocsEntry('tutorial'); diff --git a/src/content/docs/en/guides/deploy/aws.mdx b/src/content/docs/en/guides/deploy/aws.mdx index c73958b81b22f..bd89a60fb80d0 100644 --- a/src/content/docs/en/guides/deploy/aws.mdx +++ b/src/content/docs/en/guides/deploy/aws.mdx @@ -4,6 +4,7 @@ description: How to deploy your Astro site to the web using AWS. sidebar: label: AWS type: deploy +service: AWS i18nReady: true --- import ReadMore from '~/components/ReadMore.astro'; diff --git a/src/content/docs/en/guides/deploy/azion.mdx b/src/content/docs/en/guides/deploy/azion.mdx index 2980f840cc4d5..fb28e405b2f6d 100644 --- a/src/content/docs/en/guides/deploy/azion.mdx +++ b/src/content/docs/en/guides/deploy/azion.mdx @@ -4,6 +4,7 @@ description: How to deploy your Astro site to the web using Azion. sidebar: label: Azion type: deploy +service: Azion i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/en/guides/deploy/buddy.mdx b/src/content/docs/en/guides/deploy/buddy.mdx index 311be05c5bb88..855b5c441dd3b 100644 --- a/src/content/docs/en/guides/deploy/buddy.mdx +++ b/src/content/docs/en/guides/deploy/buddy.mdx @@ -4,6 +4,7 @@ description: How to deploy your Astro site to the web using Buddy. sidebar: label: Buddy type: deploy +service: Buddy i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/en/guides/deploy/cleavr.mdx b/src/content/docs/en/guides/deploy/cleavr.mdx index 07c032fb07120..d455e81643bc7 100644 --- a/src/content/docs/en/guides/deploy/cleavr.mdx +++ b/src/content/docs/en/guides/deploy/cleavr.mdx @@ -4,6 +4,7 @@ description: How to deploy your Astro site to your VPS server using Cleavr. sidebar: label: Cleavr type: deploy +service: Cleavr i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/en/guides/deploy/clever-cloud.mdx b/src/content/docs/en/guides/deploy/clever-cloud.mdx index 3742e0269a388..4670041bd489a 100644 --- a/src/content/docs/en/guides/deploy/clever-cloud.mdx +++ b/src/content/docs/en/guides/deploy/clever-cloud.mdx @@ -4,6 +4,7 @@ description: How to deploy your Astro site to the web on Clever Cloud. sidebar: label: Clever Cloud type: deploy +service: Clever Cloud i18nReady: true --- import { Tabs, TabItem, Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/en/guides/deploy/cloudflare.mdx b/src/content/docs/en/guides/deploy/cloudflare.mdx index 2522584ddaa84..3f2967f34b281 100644 --- a/src/content/docs/en/guides/deploy/cloudflare.mdx +++ b/src/content/docs/en/guides/deploy/cloudflare.mdx @@ -4,6 +4,7 @@ description: How to deploy your Astro site to the web using Cloudflare sidebar: label: Cloudflare type: deploy +service: Cloudflare i18nReady: true --- import ReadMore from '~/components/ReadMore.astro'; diff --git a/src/content/docs/en/guides/deploy/cloudray.mdx b/src/content/docs/en/guides/deploy/cloudray.mdx index 74b7884fe3ce2..42748d331e854 100644 --- a/src/content/docs/en/guides/deploy/cloudray.mdx +++ b/src/content/docs/en/guides/deploy/cloudray.mdx @@ -4,6 +4,7 @@ description: How to deploy your Astro site to your Ubuntu Server using CloudRay sidebar: label: CloudRay type: deploy +service: CloudRay i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/en/guides/deploy/deno.mdx b/src/content/docs/en/guides/deploy/deno.mdx index e1e6d724fd4c2..dc8a99e3fa2d2 100644 --- a/src/content/docs/en/guides/deploy/deno.mdx +++ b/src/content/docs/en/guides/deploy/deno.mdx @@ -4,6 +4,7 @@ description: How to deploy your Astro site to the web using Deno. sidebar: label: Deno type: deploy +service: Deno i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/en/guides/deploy/deployhq.mdx b/src/content/docs/en/guides/deploy/deployhq.mdx index 7a8ca02bd45ec..a11c3c862398c 100644 --- a/src/content/docs/en/guides/deploy/deployhq.mdx +++ b/src/content/docs/en/guides/deploy/deployhq.mdx @@ -4,6 +4,7 @@ description: How to deploy your Astro site to the web using DeployHQ. sidebar: label: DeployHQ type: deploy +service: DeployHQ i18nReady: true --- import ReadMore from '~/components/ReadMore.astro'; diff --git a/src/content/docs/en/guides/deploy/fleek.mdx b/src/content/docs/en/guides/deploy/fleek.mdx index 9661d072e61f2..bf19b38c63e99 100644 --- a/src/content/docs/en/guides/deploy/fleek.mdx +++ b/src/content/docs/en/guides/deploy/fleek.mdx @@ -4,6 +4,7 @@ description: How to deploy your Astro site to the web on Fleek. sidebar: label: Fleek type: deploy +service: Fleek i18nReady: true --- diff --git a/src/content/docs/en/guides/deploy/flightcontrol.mdx b/src/content/docs/en/guides/deploy/flightcontrol.mdx index 9b76a09357c6b..29b5cafb9dfe7 100644 --- a/src/content/docs/en/guides/deploy/flightcontrol.mdx +++ b/src/content/docs/en/guides/deploy/flightcontrol.mdx @@ -4,6 +4,7 @@ description: How to deploy your Astro site to AWS with Flightcontrol sidebar: label: Flightcontrol type: deploy +service: Flightcontrol i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/en/guides/deploy/flyio.mdx b/src/content/docs/en/guides/deploy/flyio.mdx index 664d7bc4aae84..ac694b0e986d8 100644 --- a/src/content/docs/en/guides/deploy/flyio.mdx +++ b/src/content/docs/en/guides/deploy/flyio.mdx @@ -4,6 +4,7 @@ description: How to deploy your Astro site to the web using Fly.io. sidebar: label: Fly.io type: deploy +service: Fly.io i18nReady: true stub: true --- diff --git a/src/content/docs/en/guides/deploy/github.mdx b/src/content/docs/en/guides/deploy/github.mdx index f5d74b931f449..171a753360b8c 100644 --- a/src/content/docs/en/guides/deploy/github.mdx +++ b/src/content/docs/en/guides/deploy/github.mdx @@ -4,6 +4,8 @@ description: How to deploy your Astro site to the web using GitHub Pages. sidebar: label: GitHub Pages type: deploy +service: GitHub Pages +--- i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/en/guides/deploy/gitlab.mdx b/src/content/docs/en/guides/deploy/gitlab.mdx index b2e2181ef8ecf..2c33eae34a52b 100644 --- a/src/content/docs/en/guides/deploy/gitlab.mdx +++ b/src/content/docs/en/guides/deploy/gitlab.mdx @@ -4,6 +4,7 @@ description: How to deploy your Astro site to the web using GitLab Pages. sidebar: label: GitLab Pages type: deploy +service: GitLab Pages i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/en/guides/deploy/google-cloud.mdx b/src/content/docs/en/guides/deploy/google-cloud.mdx index 0d356f6d67463..7ef56c84f61e6 100644 --- a/src/content/docs/en/guides/deploy/google-cloud.mdx +++ b/src/content/docs/en/guides/deploy/google-cloud.mdx @@ -4,6 +4,7 @@ description: How to deploy your Astro site to the web using Google Cloud. sidebar: label: Google Cloud type: deploy +service: Google Cloud i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/en/guides/deploy/google-firebase.mdx b/src/content/docs/en/guides/deploy/google-firebase.mdx index 4f9558aae937f..5814ec2c767d1 100644 --- a/src/content/docs/en/guides/deploy/google-firebase.mdx +++ b/src/content/docs/en/guides/deploy/google-firebase.mdx @@ -4,6 +4,7 @@ description: How to deploy your Astro site to the web using Google’s Firebase sidebar: label: Google Firebase type: deploy +service: Google Firebase Hosting i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/en/guides/deploy/heroku.mdx b/src/content/docs/en/guides/deploy/heroku.mdx index b6a8de85e6a3e..878df62cf016f 100644 --- a/src/content/docs/en/guides/deploy/heroku.mdx +++ b/src/content/docs/en/guides/deploy/heroku.mdx @@ -4,6 +4,7 @@ description: How to deploy your Astro site to the web using Heroku. sidebar: label: Heroku type: deploy +service: Heroku i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/en/guides/deploy/index.mdx b/src/content/docs/en/guides/deploy/index.mdx index 7cbb8eab46fa9..82d09b78bb6d3 100644 --- a/src/content/docs/en/guides/deploy/index.mdx +++ b/src/content/docs/en/guides/deploy/index.mdx @@ -6,7 +6,7 @@ sidebar: i18nReady: true --- -import DeployGuidesNav from '~/components/DeployGuidesNav.astro'; +import DeployGuidesNavAlpha from '~/components/DeployGuidesNavAlpha.astro'; import PackageManagerTabs from '~/components/tabs/PackageManagerTabs.astro'; import { Steps } from '@astrojs/starlight/components' @@ -14,7 +14,7 @@ import { Steps } from '@astrojs/starlight/components' ## Deployment Guides - + ## Quick Deploy Options diff --git a/src/content/docs/en/guides/deploy/juno.mdx b/src/content/docs/en/guides/deploy/juno.mdx index be425536247ca..97dbb7b255f0a 100644 --- a/src/content/docs/en/guides/deploy/juno.mdx +++ b/src/content/docs/en/guides/deploy/juno.mdx @@ -4,6 +4,7 @@ description: How to deploy your Astro site to the web using Juno. sidebar: label: Juno type: deploy +service: Juno i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/en/guides/deploy/kinsta.mdx b/src/content/docs/en/guides/deploy/kinsta.mdx index d1a3ebf7b91c5..18743a4d4360a 100644 --- a/src/content/docs/en/guides/deploy/kinsta.mdx +++ b/src/content/docs/en/guides/deploy/kinsta.mdx @@ -4,6 +4,7 @@ description: How to deploy your Astro site to the web on Kinsta Application Host sidebar: label: Kinsta type: deploy +service: Kinsta i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/en/guides/deploy/microsoft-azure.mdx b/src/content/docs/en/guides/deploy/microsoft-azure.mdx index 57ffa6ddf0360..6363d53416edd 100644 --- a/src/content/docs/en/guides/deploy/microsoft-azure.mdx +++ b/src/content/docs/en/guides/deploy/microsoft-azure.mdx @@ -4,6 +4,7 @@ description: How to deploy your Astro site to the web using Microsoft Azure. sidebar: label: Microsoft Azure type: deploy +service: Microsoft Azure i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/en/guides/deploy/netlify.mdx b/src/content/docs/en/guides/deploy/netlify.mdx index 449e8fd034873..a26c2468ff759 100644 --- a/src/content/docs/en/guides/deploy/netlify.mdx +++ b/src/content/docs/en/guides/deploy/netlify.mdx @@ -4,6 +4,7 @@ description: How to deploy your Astro site to the web on Netlify. sidebar: label: Netlify type: deploy +service: Netlify i18nReady: true --- import ReadMore from '~/components/ReadMore.astro'; diff --git a/src/content/docs/en/guides/deploy/railway.mdx b/src/content/docs/en/guides/deploy/railway.mdx index f86deec858153..6e022c9aecfeb 100644 --- a/src/content/docs/en/guides/deploy/railway.mdx +++ b/src/content/docs/en/guides/deploy/railway.mdx @@ -5,6 +5,7 @@ sidebar: label: Railway type: deploy i18nReady: true +service: Railway stub: true --- diff --git a/src/content/docs/en/guides/deploy/render.mdx b/src/content/docs/en/guides/deploy/render.mdx index 7068d7439e303..926070d691093 100644 --- a/src/content/docs/en/guides/deploy/render.mdx +++ b/src/content/docs/en/guides/deploy/render.mdx @@ -4,6 +4,7 @@ description: How to deploy your Astro site to the web using Render. sidebar: label: Render type: deploy +service: Render i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/en/guides/deploy/seenode.mdx b/src/content/docs/en/guides/deploy/seenode.mdx index 3b49ceeff7d9d..e1229df672a80 100644 --- a/src/content/docs/en/guides/deploy/seenode.mdx +++ b/src/content/docs/en/guides/deploy/seenode.mdx @@ -4,6 +4,7 @@ description: How to deploy your Astro site to the web on Seenode. sidebar: label: Seenode type: deploy +service: Seenode i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/en/guides/deploy/sst.mdx b/src/content/docs/en/guides/deploy/sst.mdx index 92a5a49a81ffb..4e805f61b92a8 100644 --- a/src/content/docs/en/guides/deploy/sst.mdx +++ b/src/content/docs/en/guides/deploy/sst.mdx @@ -4,6 +4,7 @@ description: How to deploy your Astro site to AWS with SST sidebar: label: SST type: deploy +service: AWS via SST i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/en/guides/deploy/stormkit.mdx b/src/content/docs/en/guides/deploy/stormkit.mdx index 2d836d0b74c22..d968c14368aaf 100644 --- a/src/content/docs/en/guides/deploy/stormkit.mdx +++ b/src/content/docs/en/guides/deploy/stormkit.mdx @@ -4,6 +4,7 @@ description: Deploy your Astro site to Stormkit sidebar: label: Stormkit type: deploy +service: Stormkit i18nReady: true --- import ReadMore from '~/components/ReadMore.astro'; diff --git a/src/content/docs/en/guides/deploy/surge.mdx b/src/content/docs/en/guides/deploy/surge.mdx index 2f71630509348..a03ee6ab2b1a6 100644 --- a/src/content/docs/en/guides/deploy/surge.mdx +++ b/src/content/docs/en/guides/deploy/surge.mdx @@ -4,6 +4,7 @@ description: How to deploy your Astro site to the web using Surge sidebar: label: Surge type: deploy +service: Surge i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/en/guides/deploy/vercel.mdx b/src/content/docs/en/guides/deploy/vercel.mdx index 32b2263b98b9a..588ccb184fdd9 100644 --- a/src/content/docs/en/guides/deploy/vercel.mdx +++ b/src/content/docs/en/guides/deploy/vercel.mdx @@ -4,6 +4,7 @@ description: How to deploy your Astro site to the web on Vercel. sidebar: label: Vercel type: deploy +service: Vercel i18nReady: true --- import PackageManagerTabs from '~/components/tabs/PackageManagerTabs.astro'; diff --git a/src/content/docs/en/guides/deploy/zeabur.mdx b/src/content/docs/en/guides/deploy/zeabur.mdx index e3b3f7c85ff6f..41d918a2b7833 100644 --- a/src/content/docs/en/guides/deploy/zeabur.mdx +++ b/src/content/docs/en/guides/deploy/zeabur.mdx @@ -4,6 +4,7 @@ description: How to deploy your Astro site to the web on Zeabur. sidebar: label: Zeabur type: deploy +service: Zeabur i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/en/guides/deploy/zephyr.mdx b/src/content/docs/en/guides/deploy/zephyr.mdx index 284621e742317..23b021581d076 100644 --- a/src/content/docs/en/guides/deploy/zephyr.mdx +++ b/src/content/docs/en/guides/deploy/zephyr.mdx @@ -4,6 +4,7 @@ description: How to deploy your Astro site to the web using Zephyr Cloud. sidebar: label: Zephyr Cloud type: deploy +service: Zephyr Cloud i18nReady: true --- diff --git a/src/content/docs/en/guides/deploy/zerops.mdx b/src/content/docs/en/guides/deploy/zerops.mdx index de82b8812fa43..b3aafa8fc823c 100644 --- a/src/content/docs/en/guides/deploy/zerops.mdx +++ b/src/content/docs/en/guides/deploy/zerops.mdx @@ -4,6 +4,7 @@ description: How to deploy your Astro site to the web using Zerops. sidebar: label: Zerops type: deploy +service: Zerops i18nReady: true --- import PackageManagerTabs from '~/components/tabs/PackageManagerTabs.astro' From 8c37dfc77fff0068d448be69a464590fd70be517 Mon Sep 17 00:00:00 2001 From: sarahrainsberger Date: Tue, 18 Nov 2025 20:51:06 +0000 Subject: [PATCH 02/24] update de and es deploy guides to include `service` --- src/content/docs/de/guides/deploy/buddy.mdx | 1 + src/content/docs/de/guides/deploy/cleavr.mdx | 1 + src/content/docs/de/guides/deploy/deno.mdx | 1 + src/content/docs/de/guides/deploy/flightcontrol.mdx | 1 + src/content/docs/de/guides/deploy/gitlab.mdx | 1 + src/content/docs/de/guides/deploy/google-cloud.mdx | 1 + src/content/docs/de/guides/deploy/google-firebase.mdx | 3 +++ src/content/docs/de/guides/deploy/heroku.mdx | 1 + src/content/docs/es/guides/deploy/azion.mdx | 1 + src/content/docs/es/guides/deploy/clever-cloud.mdx | 1 + src/content/docs/es/guides/deploy/cloudray.mdx | 1 + src/content/docs/es/guides/deploy/fleek.mdx | 1 + src/content/docs/es/guides/deploy/github.mdx | 1 + src/content/docs/es/guides/deploy/railway.mdx | 1 + 14 files changed, 16 insertions(+) diff --git a/src/content/docs/de/guides/deploy/buddy.mdx b/src/content/docs/de/guides/deploy/buddy.mdx index 7b5116fa61d79..5c57f3981f732 100644 --- a/src/content/docs/de/guides/deploy/buddy.mdx +++ b/src/content/docs/de/guides/deploy/buddy.mdx @@ -4,6 +4,7 @@ description: Wie du deine Astro-Website mit Buddy im Internet veröffentlichst. sidebar: label: Buddy type: deploy +service: Buddy i18nReady: true --- diff --git a/src/content/docs/de/guides/deploy/cleavr.mdx b/src/content/docs/de/guides/deploy/cleavr.mdx index d3626f7f34af2..93c140ef52e86 100644 --- a/src/content/docs/de/guides/deploy/cleavr.mdx +++ b/src/content/docs/de/guides/deploy/cleavr.mdx @@ -4,6 +4,7 @@ description: Wie du deine Astro-Website mit Cleavr auf deinem VPS-Server bereits sidebar: label: Cleavr type: deploy +service: Cleavr i18nReady: true --- diff --git a/src/content/docs/de/guides/deploy/deno.mdx b/src/content/docs/de/guides/deploy/deno.mdx index 6fb2a9489c5df..601bb131083d0 100644 --- a/src/content/docs/de/guides/deploy/deno.mdx +++ b/src/content/docs/de/guides/deploy/deno.mdx @@ -4,6 +4,7 @@ description: Wie du deine Astro-Webseite mit Deno im Internet veröffentlichst. sidebar: label: Deno type: deploy +service: Deno Deploy i18nReady: true --- diff --git a/src/content/docs/de/guides/deploy/flightcontrol.mdx b/src/content/docs/de/guides/deploy/flightcontrol.mdx index ebb76be361423..c5666453100f1 100644 --- a/src/content/docs/de/guides/deploy/flightcontrol.mdx +++ b/src/content/docs/de/guides/deploy/flightcontrol.mdx @@ -4,6 +4,7 @@ description: Wie du deine Astro-Website mit Flightcontrol auf AWS veröffentlich sidebar: label: Flightcontrol type: deploy +service: Flightcontrol i18nReady: true --- diff --git a/src/content/docs/de/guides/deploy/gitlab.mdx b/src/content/docs/de/guides/deploy/gitlab.mdx index 414f56f1fda6a..e0a718f3cca09 100644 --- a/src/content/docs/de/guides/deploy/gitlab.mdx +++ b/src/content/docs/de/guides/deploy/gitlab.mdx @@ -4,6 +4,7 @@ description: Anleitung zur Veröffentlichung deiner Astro-Website mittels GitLab sidebar: label: GitLab Pages type: deploy +service: GitLab Pages i18nReady: true --- diff --git a/src/content/docs/de/guides/deploy/google-cloud.mdx b/src/content/docs/de/guides/deploy/google-cloud.mdx index 669f3b03c6e52..d71e2e83d96f4 100644 --- a/src/content/docs/de/guides/deploy/google-cloud.mdx +++ b/src/content/docs/de/guides/deploy/google-cloud.mdx @@ -4,6 +4,7 @@ description: Wie du deine Astro-Website auf Google Cloud im Internet veröffentl sidebar: label: Google Cloud type: deploy +service: Google Cloud i18nReady: true --- diff --git a/src/content/docs/de/guides/deploy/google-firebase.mdx b/src/content/docs/de/guides/deploy/google-firebase.mdx index 62786f8799061..159e763b6bde9 100644 --- a/src/content/docs/de/guides/deploy/google-firebase.mdx +++ b/src/content/docs/de/guides/deploy/google-firebase.mdx @@ -2,6 +2,9 @@ title: Veröffentliche deine Astro-Website auf Google's Firebase Hosting description: Wie du deine Astro-Website auf Firebase-Hosting von Google im Internet veröffentlichst. type: deploy +service: Firebase Hosting +sidebar: + label: Firebase Hosting i18nReady: true --- diff --git a/src/content/docs/de/guides/deploy/heroku.mdx b/src/content/docs/de/guides/deploy/heroku.mdx index 1da41cd81f484..568e6e6844dda 100644 --- a/src/content/docs/de/guides/deploy/heroku.mdx +++ b/src/content/docs/de/guides/deploy/heroku.mdx @@ -4,6 +4,7 @@ description: Wie du deine Astro-Website auf Heroku im Internet veröffentlichst. sidebar: label: Heroku type: deploy +service: Heroku i18nReady: true --- diff --git a/src/content/docs/es/guides/deploy/azion.mdx b/src/content/docs/es/guides/deploy/azion.mdx index dd4b7f00a63c0..eefb084235333 100644 --- a/src/content/docs/es/guides/deploy/azion.mdx +++ b/src/content/docs/es/guides/deploy/azion.mdx @@ -4,6 +4,7 @@ description: Cómo desplegar tu sitio Astro en la web usando Azion. sidebar: label: Azion type: deploy +service: Azion i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/es/guides/deploy/clever-cloud.mdx b/src/content/docs/es/guides/deploy/clever-cloud.mdx index a249072df097f..4be7706be9d81 100644 --- a/src/content/docs/es/guides/deploy/clever-cloud.mdx +++ b/src/content/docs/es/guides/deploy/clever-cloud.mdx @@ -4,6 +4,7 @@ description: Cómo desplegar tu sitio Astro en la web en Clever Cloud. sidebar: label: Clever Cloud type: deploy +service: Clever Cloud i18nReady: true --- import { Tabs, TabItem, Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/es/guides/deploy/cloudray.mdx b/src/content/docs/es/guides/deploy/cloudray.mdx index 56e417394755e..ad6896cb883fc 100644 --- a/src/content/docs/es/guides/deploy/cloudray.mdx +++ b/src/content/docs/es/guides/deploy/cloudray.mdx @@ -4,6 +4,7 @@ description: Cómo desplegar tu sitio de Astro en tu servidor Ubuntu utilizando sidebar: label: CloudRay type: deploy +service: CloudRay i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/es/guides/deploy/fleek.mdx b/src/content/docs/es/guides/deploy/fleek.mdx index 4f33ff9bdfc67..e523869d67955 100644 --- a/src/content/docs/es/guides/deploy/fleek.mdx +++ b/src/content/docs/es/guides/deploy/fleek.mdx @@ -4,6 +4,7 @@ description: Cómo desplegar tu sitio de Astro en la web en Fleek. sidebar: label: Fleek type: deploy +service: Fleek i18nReady: true --- diff --git a/src/content/docs/es/guides/deploy/github.mdx b/src/content/docs/es/guides/deploy/github.mdx index 401d991ba855f..52e8b942250d5 100644 --- a/src/content/docs/es/guides/deploy/github.mdx +++ b/src/content/docs/es/guides/deploy/github.mdx @@ -4,6 +4,7 @@ description: Cómo desplegar tu proyecto de Astro usando GitHub Pages. sidebar: label: GitHub Pages type: deploy +service: GitHub Pages i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/es/guides/deploy/railway.mdx b/src/content/docs/es/guides/deploy/railway.mdx index 85e861631ff3a..ebe71ae3a3d99 100644 --- a/src/content/docs/es/guides/deploy/railway.mdx +++ b/src/content/docs/es/guides/deploy/railway.mdx @@ -4,6 +4,7 @@ description: Cómo desplegar tu sitio de Astro utilizando la interfaz web de Rai sidebar: label: Railway type: deploy +service: Railway i18nReady: true stub: true --- From 823760b5a2b86f60104d644ec05af51bb03fd8d0 Mon Sep 17 00:00:00 2001 From: sarahrainsberger Date: Tue, 18 Nov 2025 21:10:30 +0000 Subject: [PATCH 03/24] add service to more translated guides --- src/content/docs/fr/guides/deploy/aws.mdx | 1 + src/content/docs/fr/guides/deploy/azion.mdx | 1 + src/content/docs/fr/guides/deploy/buddy.mdx | 1 + src/content/docs/fr/guides/deploy/cleavr.mdx | 1 + src/content/docs/fr/guides/deploy/clever-cloud.mdx | 1 + src/content/docs/fr/guides/deploy/cloudflare.mdx | 1 + src/content/docs/fr/guides/deploy/cloudray.mdx | 1 + src/content/docs/fr/guides/deploy/deno.mdx | 1 + src/content/docs/fr/guides/deploy/deployhq.mdx | 1 + src/content/docs/fr/guides/deploy/fleek.mdx | 1 + src/content/docs/fr/guides/deploy/flightcontrol.mdx | 1 + src/content/docs/fr/guides/deploy/flyio.mdx | 1 + src/content/docs/fr/guides/deploy/github.mdx | 1 + src/content/docs/fr/guides/deploy/gitlab.mdx | 1 + src/content/docs/fr/guides/deploy/google-cloud.mdx | 1 + src/content/docs/fr/guides/deploy/google-firebase.mdx | 1 + src/content/docs/fr/guides/deploy/heroku.mdx | 1 + src/content/docs/fr/guides/deploy/kinsta.mdx | 1 + src/content/docs/fr/guides/deploy/microsoft-azure.mdx | 1 + src/content/docs/fr/guides/deploy/netlify.mdx | 1 + src/content/docs/fr/guides/deploy/railway.mdx | 1 + src/content/docs/fr/guides/deploy/render.mdx | 1 + src/content/docs/fr/guides/deploy/seenode.mdx | 1 + src/content/docs/fr/guides/deploy/sst.mdx | 1 + src/content/docs/fr/guides/deploy/stormkit.mdx | 1 + src/content/docs/fr/guides/deploy/surge.mdx | 1 + src/content/docs/fr/guides/deploy/vercel.mdx | 1 + src/content/docs/fr/guides/deploy/zeabur.mdx | 1 + src/content/docs/fr/guides/deploy/zephyr.mdx | 1 + src/content/docs/fr/guides/deploy/zerops.mdx | 1 + src/content/docs/ja/guides/deploy/render.mdx | 3 +++ src/content/docs/ko/guides/deploy/aws.mdx | 1 + src/content/docs/ko/guides/deploy/azion.mdx | 1 + src/content/docs/ko/guides/deploy/buddy.mdx | 1 + src/content/docs/ko/guides/deploy/cleavr.mdx | 1 + src/content/docs/ko/guides/deploy/clever-cloud.mdx | 1 + src/content/docs/ko/guides/deploy/cloudflare.mdx | 1 + src/content/docs/ko/guides/deploy/cloudray.mdx | 1 + src/content/docs/ko/guides/deploy/deno.mdx | 1 + src/content/docs/ko/guides/deploy/deployhq.mdx | 1 + src/content/docs/ko/guides/deploy/fleek.mdx | 1 + src/content/docs/ko/guides/deploy/flightcontrol.mdx | 1 + src/content/docs/ko/guides/deploy/flyio.mdx | 1 + src/content/docs/ko/guides/deploy/github.mdx | 1 + src/content/docs/ko/guides/deploy/gitlab.mdx | 1 + src/content/docs/ko/guides/deploy/google-cloud.mdx | 1 + 46 files changed, 48 insertions(+) diff --git a/src/content/docs/fr/guides/deploy/aws.mdx b/src/content/docs/fr/guides/deploy/aws.mdx index 7ab3d1f2b060a..0be07b4499f32 100644 --- a/src/content/docs/fr/guides/deploy/aws.mdx +++ b/src/content/docs/fr/guides/deploy/aws.mdx @@ -4,6 +4,7 @@ description: Comment déployer votre site Astro sur le web en utilisant AWS. sidebar: label: AWS type: deploy +service: AWS i18nReady: true --- import ReadMore from '~/components/ReadMore.astro'; diff --git a/src/content/docs/fr/guides/deploy/azion.mdx b/src/content/docs/fr/guides/deploy/azion.mdx index 5b01d70c37ef6..9c8ffd19e293a 100644 --- a/src/content/docs/fr/guides/deploy/azion.mdx +++ b/src/content/docs/fr/guides/deploy/azion.mdx @@ -4,6 +4,7 @@ description: Comment déployer votre site Astro sur le Web à l'aide d'Azion. sidebar: label: Azion type: deploy +service: Azion i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/fr/guides/deploy/buddy.mdx b/src/content/docs/fr/guides/deploy/buddy.mdx index 38be3351321fa..0b286809311a9 100644 --- a/src/content/docs/fr/guides/deploy/buddy.mdx +++ b/src/content/docs/fr/guides/deploy/buddy.mdx @@ -4,6 +4,7 @@ description: Comment déployer votre site Astro sur le web en utilisant Buddy. sidebar: label: Buddy type: deploy +service: Buddy i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/fr/guides/deploy/cleavr.mdx b/src/content/docs/fr/guides/deploy/cleavr.mdx index db66bd599be96..7ca4e198b718a 100644 --- a/src/content/docs/fr/guides/deploy/cleavr.mdx +++ b/src/content/docs/fr/guides/deploy/cleavr.mdx @@ -4,6 +4,7 @@ description: Comment déployer votre site Astro sur votre serveur VPS en utilisa sidebar: label: Cleavr type: deploy +service: Cleavr i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/fr/guides/deploy/clever-cloud.mdx b/src/content/docs/fr/guides/deploy/clever-cloud.mdx index 22b17b297e282..2d20ce69926db 100644 --- a/src/content/docs/fr/guides/deploy/clever-cloud.mdx +++ b/src/content/docs/fr/guides/deploy/clever-cloud.mdx @@ -4,6 +4,7 @@ description: Comment déployer votre site Astro sur le web avec Clever Cloud. sidebar: label: Clever Cloud type: deploy +service: Clever Cloud i18nReady: true --- import { Tabs, TabItem, Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/fr/guides/deploy/cloudflare.mdx b/src/content/docs/fr/guides/deploy/cloudflare.mdx index cf60f764d6679..30d9d92b3a98a 100644 --- a/src/content/docs/fr/guides/deploy/cloudflare.mdx +++ b/src/content/docs/fr/guides/deploy/cloudflare.mdx @@ -4,6 +4,7 @@ description: Comment déployer votre site Astro sur le web en utilisant Cloudfla sidebar: label: Cloudflare type: deploy +service: Cloudflare i18nReady: true --- import ReadMore from '~/components/ReadMore.astro'; diff --git a/src/content/docs/fr/guides/deploy/cloudray.mdx b/src/content/docs/fr/guides/deploy/cloudray.mdx index ad7a1d94fa504..76d84b4accfed 100644 --- a/src/content/docs/fr/guides/deploy/cloudray.mdx +++ b/src/content/docs/fr/guides/deploy/cloudray.mdx @@ -4,6 +4,7 @@ description: Comment déployer votre site Astro sur votre serveur Ubuntu à l'ai sidebar: label: CloudRay type: deploy +service: CloudRay i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/fr/guides/deploy/deno.mdx b/src/content/docs/fr/guides/deploy/deno.mdx index f027ff3b29a19..722f3c44d0838 100644 --- a/src/content/docs/fr/guides/deploy/deno.mdx +++ b/src/content/docs/fr/guides/deploy/deno.mdx @@ -4,6 +4,7 @@ description: Comment déployer votre site Astro sur le web en utilisant Deno. sidebar: label: Deno type: deploy +service: Deno i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/fr/guides/deploy/deployhq.mdx b/src/content/docs/fr/guides/deploy/deployhq.mdx index 6e6ccf68aac1d..b8e9b769ff36c 100644 --- a/src/content/docs/fr/guides/deploy/deployhq.mdx +++ b/src/content/docs/fr/guides/deploy/deployhq.mdx @@ -4,6 +4,7 @@ description: Comment déployer votre site Astro sur le web en utilisant DeployHQ sidebar: label: DeployHQ type: deploy +service: DeployHQ i18nReady: true --- import ReadMore from '~/components/ReadMore.astro'; diff --git a/src/content/docs/fr/guides/deploy/fleek.mdx b/src/content/docs/fr/guides/deploy/fleek.mdx index bee1223f4c017..cdd3368d90bbb 100644 --- a/src/content/docs/fr/guides/deploy/fleek.mdx +++ b/src/content/docs/fr/guides/deploy/fleek.mdx @@ -4,6 +4,7 @@ description: Comment déployer votre site Astro sur le web avec Fleek. sidebar: label: Fleek type: deploy +service: Fleek i18nReady: true --- diff --git a/src/content/docs/fr/guides/deploy/flightcontrol.mdx b/src/content/docs/fr/guides/deploy/flightcontrol.mdx index 0a31d932cab9a..dc2a06f1ecce8 100644 --- a/src/content/docs/fr/guides/deploy/flightcontrol.mdx +++ b/src/content/docs/fr/guides/deploy/flightcontrol.mdx @@ -4,6 +4,7 @@ description: Comment déployer votre site Astro sur AWS avec Flightcontrol sidebar: label: Flightcontrol type: deploy +service: Flightcontrol i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/fr/guides/deploy/flyio.mdx b/src/content/docs/fr/guides/deploy/flyio.mdx index 39fa4d115b464..31b55bbd3f695 100644 --- a/src/content/docs/fr/guides/deploy/flyio.mdx +++ b/src/content/docs/fr/guides/deploy/flyio.mdx @@ -4,6 +4,7 @@ description: Comment déployer votre site Astro sur le web en utilisant Fly.io. sidebar: label: Fly.io type: deploy +service: Fly.io i18nReady: true stub: true --- diff --git a/src/content/docs/fr/guides/deploy/github.mdx b/src/content/docs/fr/guides/deploy/github.mdx index 79e0996a37743..ae2b6def04424 100644 --- a/src/content/docs/fr/guides/deploy/github.mdx +++ b/src/content/docs/fr/guides/deploy/github.mdx @@ -4,6 +4,7 @@ description: Comment déployer votre site Astro sur le Web à l'aide de GitHub P sidebar: label: GitHub Pages type: deploy +service: GitHub Pages i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/fr/guides/deploy/gitlab.mdx b/src/content/docs/fr/guides/deploy/gitlab.mdx index cf49ca605e8ea..0a59fcd7b61e9 100644 --- a/src/content/docs/fr/guides/deploy/gitlab.mdx +++ b/src/content/docs/fr/guides/deploy/gitlab.mdx @@ -4,6 +4,7 @@ description: Comment déployer votre site Astro sur le web en utilisant GitLab P sidebar: label: GitLab Pages type: deploy +service: GitLab Pages i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/fr/guides/deploy/google-cloud.mdx b/src/content/docs/fr/guides/deploy/google-cloud.mdx index 8c9e6ae1f6797..97c7bc47153e2 100644 --- a/src/content/docs/fr/guides/deploy/google-cloud.mdx +++ b/src/content/docs/fr/guides/deploy/google-cloud.mdx @@ -4,6 +4,7 @@ description: Comment déployer votre site Astro sur le web en utilisant Google C sidebar: label: Google Cloud type: deploy +service: Google Cloud i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/fr/guides/deploy/google-firebase.mdx b/src/content/docs/fr/guides/deploy/google-firebase.mdx index f0b23daa0af73..9effc1cc50544 100644 --- a/src/content/docs/fr/guides/deploy/google-firebase.mdx +++ b/src/content/docs/fr/guides/deploy/google-firebase.mdx @@ -4,6 +4,7 @@ description: Comment déployer votre site Astro sur le web en utilisant l'héber sidebar: label: Google Firebase type: deploy +service: Google Firebase i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/fr/guides/deploy/heroku.mdx b/src/content/docs/fr/guides/deploy/heroku.mdx index eec10a5f1cbb5..4498c90acf028 100644 --- a/src/content/docs/fr/guides/deploy/heroku.mdx +++ b/src/content/docs/fr/guides/deploy/heroku.mdx @@ -4,6 +4,7 @@ description: Comment déployer votre site Astro sur le web en utilisant Heroku. sidebar: label: Heroku type: deploy +service: Heroku i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/fr/guides/deploy/kinsta.mdx b/src/content/docs/fr/guides/deploy/kinsta.mdx index fb40f3698209a..69f3ed1a2001c 100644 --- a/src/content/docs/fr/guides/deploy/kinsta.mdx +++ b/src/content/docs/fr/guides/deploy/kinsta.mdx @@ -4,6 +4,7 @@ description: Comment déployer votre site Astro sur le web avec Kinsta Applicati sidebar: label: Kinsta type: deploy +service: Kinsta i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/fr/guides/deploy/microsoft-azure.mdx b/src/content/docs/fr/guides/deploy/microsoft-azure.mdx index ab91064576d8f..6ff9b77c72967 100644 --- a/src/content/docs/fr/guides/deploy/microsoft-azure.mdx +++ b/src/content/docs/fr/guides/deploy/microsoft-azure.mdx @@ -4,6 +4,7 @@ description: Comment déployer votre site Astro sur le web en utilisant Microsof sidebar: label: Microsoft Azure type: deploy +service: Microsoft Azure i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/fr/guides/deploy/netlify.mdx b/src/content/docs/fr/guides/deploy/netlify.mdx index 75b96a5e7dab9..62d61592c32fb 100644 --- a/src/content/docs/fr/guides/deploy/netlify.mdx +++ b/src/content/docs/fr/guides/deploy/netlify.mdx @@ -4,6 +4,7 @@ description: Comment déployer votre site Astro sur le web sur Netlify. sidebar: label: Netlify type: deploy +service: Netlify i18nReady: true --- import ReadMore from '~/components/ReadMore.astro'; diff --git a/src/content/docs/fr/guides/deploy/railway.mdx b/src/content/docs/fr/guides/deploy/railway.mdx index 47b45107bfebe..987a9b8603904 100644 --- a/src/content/docs/fr/guides/deploy/railway.mdx +++ b/src/content/docs/fr/guides/deploy/railway.mdx @@ -4,6 +4,7 @@ description: Comment déployer votre site Astro à l'aide de l'interface web de sidebar: label: Railway type: deploy +service: Railway i18nReady: true stub: true --- diff --git a/src/content/docs/fr/guides/deploy/render.mdx b/src/content/docs/fr/guides/deploy/render.mdx index 4252d081399fb..54d82ef895837 100644 --- a/src/content/docs/fr/guides/deploy/render.mdx +++ b/src/content/docs/fr/guides/deploy/render.mdx @@ -4,6 +4,7 @@ description: Comment déployer votre site Astro sur le Web avec Render. sidebar: label: Render type: deploy +service: Render i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/fr/guides/deploy/seenode.mdx b/src/content/docs/fr/guides/deploy/seenode.mdx index f19247a2060c9..b5606ca1df081 100644 --- a/src/content/docs/fr/guides/deploy/seenode.mdx +++ b/src/content/docs/fr/guides/deploy/seenode.mdx @@ -4,6 +4,7 @@ description: Comment déployer votre site Astro sur le web avec Seenode. sidebar: label: Seenode type: deploy +service: Seenode i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/fr/guides/deploy/sst.mdx b/src/content/docs/fr/guides/deploy/sst.mdx index a8992184dac5c..d56c688c42383 100644 --- a/src/content/docs/fr/guides/deploy/sst.mdx +++ b/src/content/docs/fr/guides/deploy/sst.mdx @@ -4,6 +4,7 @@ description: Comment déployer votre site Astro sur AWS avec SST sidebar: label: SST type: deploy +service: AWS via SST i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/fr/guides/deploy/stormkit.mdx b/src/content/docs/fr/guides/deploy/stormkit.mdx index 0741951243251..5e52225ff61d8 100644 --- a/src/content/docs/fr/guides/deploy/stormkit.mdx +++ b/src/content/docs/fr/guides/deploy/stormkit.mdx @@ -4,6 +4,7 @@ description: Déployez votre site Astro depuis Stormkit sidebar: label: Stormkit type: deploy +service: Stormkit i18nReady: true --- import ReadMore from '~/components/ReadMore.astro'; diff --git a/src/content/docs/fr/guides/deploy/surge.mdx b/src/content/docs/fr/guides/deploy/surge.mdx index 8ac73d576c610..96c4a0386681f 100644 --- a/src/content/docs/fr/guides/deploy/surge.mdx +++ b/src/content/docs/fr/guides/deploy/surge.mdx @@ -4,6 +4,7 @@ description: Comment déployer votre site Astro sur le Web avec Surge. sidebar: label: Surge type: deploy +service: Surge i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/fr/guides/deploy/vercel.mdx b/src/content/docs/fr/guides/deploy/vercel.mdx index 29cf2239e34c3..f415870c19218 100644 --- a/src/content/docs/fr/guides/deploy/vercel.mdx +++ b/src/content/docs/fr/guides/deploy/vercel.mdx @@ -4,6 +4,7 @@ description: Comment déployer votre site Astro vers le web sur Vercel. sidebar: label: Vercel type: deploy +service: Vercel i18nReady: true --- import PackageManagerTabs from '~/components/tabs/PackageManagerTabs.astro'; diff --git a/src/content/docs/fr/guides/deploy/zeabur.mdx b/src/content/docs/fr/guides/deploy/zeabur.mdx index e5256c0983386..06cd59e69ccd3 100644 --- a/src/content/docs/fr/guides/deploy/zeabur.mdx +++ b/src/content/docs/fr/guides/deploy/zeabur.mdx @@ -4,6 +4,7 @@ description: Comment déployer votre site Astro sur le web avec Zeabur. sidebar: label: Zeabur type: deploy +service: Zeabur i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/fr/guides/deploy/zephyr.mdx b/src/content/docs/fr/guides/deploy/zephyr.mdx index 446fafcded063..4b2ab3d34a311 100644 --- a/src/content/docs/fr/guides/deploy/zephyr.mdx +++ b/src/content/docs/fr/guides/deploy/zephyr.mdx @@ -4,6 +4,7 @@ description: Comment déployer votre site Astro sur le web à l'aide de Zephyr C sidebar: label: Zephyr Cloud type: deploy +service: Zephyr Cloud i18nReady: true --- diff --git a/src/content/docs/fr/guides/deploy/zerops.mdx b/src/content/docs/fr/guides/deploy/zerops.mdx index 90f672e4f8db5..235b9ec311529 100644 --- a/src/content/docs/fr/guides/deploy/zerops.mdx +++ b/src/content/docs/fr/guides/deploy/zerops.mdx @@ -4,6 +4,7 @@ description: Comment déployer votre site Astro sur le web en utilisant Zerops. sidebar: label: Zerops type: deploy +service: Zerops i18nReady: true --- import PackageManagerTabs from '~/components/tabs/PackageManagerTabs.astro' diff --git a/src/content/docs/ja/guides/deploy/render.mdx b/src/content/docs/ja/guides/deploy/render.mdx index c59c252c35eac..e15d3be9388d1 100644 --- a/src/content/docs/ja/guides/deploy/render.mdx +++ b/src/content/docs/ja/guides/deploy/render.mdx @@ -2,6 +2,9 @@ title: AstroサイトをRenderにデプロイする description: RenderでAstroサイトをデプロイする方法。 type: deploy +service: Render +sidebar: + label: Render i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/aws.mdx b/src/content/docs/ko/guides/deploy/aws.mdx index f62bcefae5773..20ac472c50957 100644 --- a/src/content/docs/ko/guides/deploy/aws.mdx +++ b/src/content/docs/ko/guides/deploy/aws.mdx @@ -4,6 +4,7 @@ description: AWS를 사용하여 Astro 사이트를 웹에 배포하는 방법. sidebar: label: AWS type: deploy +service: AWS i18nReady: true --- import ReadMore from '~/components/ReadMore.astro'; diff --git a/src/content/docs/ko/guides/deploy/azion.mdx b/src/content/docs/ko/guides/deploy/azion.mdx index 34222bacfb002..7b23a0593d5cf 100644 --- a/src/content/docs/ko/guides/deploy/azion.mdx +++ b/src/content/docs/ko/guides/deploy/azion.mdx @@ -4,6 +4,7 @@ description: Azion을 사용하여 Astro 사이트를 웹에 배포하는 방법 sidebar: label: Azion type: deploy +service: Azion i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/buddy.mdx b/src/content/docs/ko/guides/deploy/buddy.mdx index 0ac44f98843ea..6234c9d8cdb38 100644 --- a/src/content/docs/ko/guides/deploy/buddy.mdx +++ b/src/content/docs/ko/guides/deploy/buddy.mdx @@ -4,6 +4,7 @@ description: Buddy를 사용하여 Astro 사이트를 웹에 배포하는 방법 sidebar: label: Buddy type: deploy +service: Buddy i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/cleavr.mdx b/src/content/docs/ko/guides/deploy/cleavr.mdx index b04191df21445..0ccc7dfe4e417 100644 --- a/src/content/docs/ko/guides/deploy/cleavr.mdx +++ b/src/content/docs/ko/guides/deploy/cleavr.mdx @@ -4,6 +4,7 @@ description: Cleavr을 사용하여 Astro 사이트를 VPS 서버에 배포하 sidebar: label: Cleavr type: deploy +service: Cleavr i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/clever-cloud.mdx b/src/content/docs/ko/guides/deploy/clever-cloud.mdx index 4b8facc48564c..7b8dfe9e4edc9 100644 --- a/src/content/docs/ko/guides/deploy/clever-cloud.mdx +++ b/src/content/docs/ko/guides/deploy/clever-cloud.mdx @@ -4,6 +4,7 @@ description: Clever Cloud로 웹에 Astro 사이트를 배포하는 방법. sidebar: label: Clever Cloud type: deploy +service: Clever Cloud i18nReady: true --- import { Tabs, TabItem, Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/cloudflare.mdx b/src/content/docs/ko/guides/deploy/cloudflare.mdx index a1b87c4010734..584864f0d4c80 100644 --- a/src/content/docs/ko/guides/deploy/cloudflare.mdx +++ b/src/content/docs/ko/guides/deploy/cloudflare.mdx @@ -4,6 +4,7 @@ description: Cloudflare를 사용하여 Astro 사이트를 웹에 배포하는 sidebar: label: Cloudflare type: deploy +service: Cloudflare i18nReady: true --- import ReadMore from '~/components/ReadMore.astro'; diff --git a/src/content/docs/ko/guides/deploy/cloudray.mdx b/src/content/docs/ko/guides/deploy/cloudray.mdx index 6823c4f695cd2..80bc53eab546f 100644 --- a/src/content/docs/ko/guides/deploy/cloudray.mdx +++ b/src/content/docs/ko/guides/deploy/cloudray.mdx @@ -4,6 +4,7 @@ description: CloudRay를 사용하여 Ubuntu 서버에 Astro 사이트를 배포 sidebar: label: CloudRay type: deploy +service: CloudRay i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/deno.mdx b/src/content/docs/ko/guides/deploy/deno.mdx index c8385eb9136a4..fe4c78ed2d44c 100644 --- a/src/content/docs/ko/guides/deploy/deno.mdx +++ b/src/content/docs/ko/guides/deploy/deno.mdx @@ -4,6 +4,7 @@ description: Deno를 사용하여 Astro 사이트를 웹에 배포하는 방법. sidebar: label: Deno type: deploy +service: Deno i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/deployhq.mdx b/src/content/docs/ko/guides/deploy/deployhq.mdx index b5106f8475b58..b427ff87b11bf 100644 --- a/src/content/docs/ko/guides/deploy/deployhq.mdx +++ b/src/content/docs/ko/guides/deploy/deployhq.mdx @@ -4,6 +4,7 @@ description: DeployHQ를 사용하여 Astro 사이트를 웹에 배포하는 방 sidebar: label: DeployHQ type: deploy +service: DeployHQ i18nReady: true --- import ReadMore from '~/components/ReadMore.astro'; diff --git a/src/content/docs/ko/guides/deploy/fleek.mdx b/src/content/docs/ko/guides/deploy/fleek.mdx index 3e85f6d5f1c56..cd0aa57c09c6a 100644 --- a/src/content/docs/ko/guides/deploy/fleek.mdx +++ b/src/content/docs/ko/guides/deploy/fleek.mdx @@ -4,6 +4,7 @@ description: Fleek에서 웹에 Astro 사이트를 배포하는 방법. sidebar: label: Fleek type: deploy +service: Fleek i18nReady: true --- diff --git a/src/content/docs/ko/guides/deploy/flightcontrol.mdx b/src/content/docs/ko/guides/deploy/flightcontrol.mdx index 94c3206b9c795..5616de9ceb221 100644 --- a/src/content/docs/ko/guides/deploy/flightcontrol.mdx +++ b/src/content/docs/ko/guides/deploy/flightcontrol.mdx @@ -4,6 +4,7 @@ description: Flightcontrol을 사용하여 Astro 사이트를 AWS에 배포하 sidebar: label: Flightcontrol type: deploy +service: Flightcontrol i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/flyio.mdx b/src/content/docs/ko/guides/deploy/flyio.mdx index 899b59c9552e9..cb0355b40df67 100644 --- a/src/content/docs/ko/guides/deploy/flyio.mdx +++ b/src/content/docs/ko/guides/deploy/flyio.mdx @@ -4,6 +4,7 @@ description: Fly.io를 사용하여 Astro 사이트를 웹에 배포하는 방 sidebar: label: Fly.io type: deploy +service: Fly.io i18nReady: true stub: true --- diff --git a/src/content/docs/ko/guides/deploy/github.mdx b/src/content/docs/ko/guides/deploy/github.mdx index 1a96ab8339142..6b71be2fa7281 100644 --- a/src/content/docs/ko/guides/deploy/github.mdx +++ b/src/content/docs/ko/guides/deploy/github.mdx @@ -4,6 +4,7 @@ description: Github Pages를 사용하여 Astro 사이트를 웹에 배포하는 sidebar: label: GitHub Pages type: deploy +service: GitHub Pages i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/gitlab.mdx b/src/content/docs/ko/guides/deploy/gitlab.mdx index 5164407602063..2be50966cc375 100644 --- a/src/content/docs/ko/guides/deploy/gitlab.mdx +++ b/src/content/docs/ko/guides/deploy/gitlab.mdx @@ -4,6 +4,7 @@ description: GitLab Pages를 사용하여 Astro 사이트를 웹에 배포하는 sidebar: label: GitLab Pages type: deploy +service: GitLab Pages i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/google-cloud.mdx b/src/content/docs/ko/guides/deploy/google-cloud.mdx index 7c4a830bf9463..8ae84d2d5fd63 100644 --- a/src/content/docs/ko/guides/deploy/google-cloud.mdx +++ b/src/content/docs/ko/guides/deploy/google-cloud.mdx @@ -4,6 +4,7 @@ description: Google Cloud를 사용하여 Astro 사이트를 웹에 배포하는 sidebar: label: Google Cloud type: deploy +service: Google Cloud i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; From e305ed418f2af225dce9925d1711b9e9e7f742a8 Mon Sep 17 00:00:00 2001 From: sarahrainsberger Date: Tue, 18 Nov 2025 21:16:12 +0000 Subject: [PATCH 04/24] more ko translations --- src/components/DeployGuidesNavAlpha.astro | 2 +- src/content/docs/ko/guides/deploy/github.mdx | 2 +- src/content/docs/ko/guides/deploy/gitlab.mdx | 2 +- src/content/docs/ko/guides/deploy/google-cloud.mdx | 2 +- src/content/docs/ko/guides/deploy/google-firebase.mdx | 1 + src/content/docs/ko/guides/deploy/heroku.mdx | 1 + src/content/docs/ko/guides/deploy/juno.mdx | 1 + src/content/docs/ko/guides/deploy/kinsta.mdx | 1 + src/content/docs/ko/guides/deploy/microsoft-azure.mdx | 1 + src/content/docs/ko/guides/deploy/netlify.mdx | 1 + src/content/docs/ko/guides/deploy/railway.mdx | 1 + src/content/docs/ko/guides/deploy/render.mdx | 1 + src/content/docs/ko/guides/deploy/seenode.mdx | 1 + src/content/docs/ko/guides/deploy/sst.mdx | 1 + src/content/docs/ko/guides/deploy/stormkit.mdx | 1 + src/content/docs/ko/guides/deploy/surge.mdx | 1 + 16 files changed, 16 insertions(+), 4 deletions(-) diff --git a/src/components/DeployGuidesNavAlpha.astro b/src/components/DeployGuidesNavAlpha.astro index 51f46174ca78f..e70e12bba2242 100644 --- a/src/components/DeployGuidesNavAlpha.astro +++ b/src/components/DeployGuidesNavAlpha.astro @@ -25,7 +25,7 @@ const links = enPages return a.data.service.toLowerCase() > b.data.service.toLowerCase() ? 1 : -1; }) .map((page) => { - const { type } = page.data; + const { service } = page.data; const pageUrl = '/' + page.id.replace('en/', `${lang}/`) + '/'; const logo = isLogoKey(page.id.split('/').pop()); return { title: service, href: pageUrl, logo }; diff --git a/src/content/docs/ko/guides/deploy/github.mdx b/src/content/docs/ko/guides/deploy/github.mdx index 6b71be2fa7281..aa13f26e0ec3a 100644 --- a/src/content/docs/ko/guides/deploy/github.mdx +++ b/src/content/docs/ko/guides/deploy/github.mdx @@ -4,7 +4,7 @@ description: Github Pages를 사용하여 Astro 사이트를 웹에 배포하는 sidebar: label: GitHub Pages type: deploy -service: GitHub Pages +service: GitHub Pages i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/gitlab.mdx b/src/content/docs/ko/guides/deploy/gitlab.mdx index 2be50966cc375..dd65bdbb3b412 100644 --- a/src/content/docs/ko/guides/deploy/gitlab.mdx +++ b/src/content/docs/ko/guides/deploy/gitlab.mdx @@ -4,7 +4,7 @@ description: GitLab Pages를 사용하여 Astro 사이트를 웹에 배포하는 sidebar: label: GitLab Pages type: deploy -service: GitLab Pages +service: GitLab Pages i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/google-cloud.mdx b/src/content/docs/ko/guides/deploy/google-cloud.mdx index 8ae84d2d5fd63..eb1b13e18a9c0 100644 --- a/src/content/docs/ko/guides/deploy/google-cloud.mdx +++ b/src/content/docs/ko/guides/deploy/google-cloud.mdx @@ -4,7 +4,7 @@ description: Google Cloud를 사용하여 Astro 사이트를 웹에 배포하는 sidebar: label: Google Cloud type: deploy -service: Google Cloud +service: Google Cloud i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/google-firebase.mdx b/src/content/docs/ko/guides/deploy/google-firebase.mdx index 5c224ef212cd9..0187d6016bff1 100644 --- a/src/content/docs/ko/guides/deploy/google-firebase.mdx +++ b/src/content/docs/ko/guides/deploy/google-firebase.mdx @@ -4,6 +4,7 @@ description: Google의 Firebase Hosting을 사용하여 Astro 사이트를 웹 sidebar: label: Google Firebase type: deploy +service: Google Firebase i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/heroku.mdx b/src/content/docs/ko/guides/deploy/heroku.mdx index 8499db202bd6b..d63d3ad1cfdf3 100644 --- a/src/content/docs/ko/guides/deploy/heroku.mdx +++ b/src/content/docs/ko/guides/deploy/heroku.mdx @@ -4,6 +4,7 @@ description: Heroku를 사용하여 Astro 사이트를 웹에 배포하는 방 sidebar: label: Heroku type: deploy +service: Heroku i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/juno.mdx b/src/content/docs/ko/guides/deploy/juno.mdx index 4c05545a0edfd..547369d764618 100644 --- a/src/content/docs/ko/guides/deploy/juno.mdx +++ b/src/content/docs/ko/guides/deploy/juno.mdx @@ -4,6 +4,7 @@ description: Juno를 사용하여 웹에 Astro 사이트를 배포하는 방법 sidebar: label: Juno type: deploy +service: Juno i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/kinsta.mdx b/src/content/docs/ko/guides/deploy/kinsta.mdx index 4cb1ef31cc596..27af4c83f04d1 100644 --- a/src/content/docs/ko/guides/deploy/kinsta.mdx +++ b/src/content/docs/ko/guides/deploy/kinsta.mdx @@ -4,6 +4,7 @@ description: Kinsta 애플리케이션 호스팅을 통해 Astro 사이트를 sidebar: label: Kinsta type: deploy +service: Kinsta i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/microsoft-azure.mdx b/src/content/docs/ko/guides/deploy/microsoft-azure.mdx index 9ebb1509f2a8a..457cc42d00532 100644 --- a/src/content/docs/ko/guides/deploy/microsoft-azure.mdx +++ b/src/content/docs/ko/guides/deploy/microsoft-azure.mdx @@ -4,6 +4,7 @@ description: Microsoft Azure를 사용하여 Astro 사이트를 웹에 배포하 sidebar: label: Microsoft Azure type: deploy +service: Microsoft Azure i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/netlify.mdx b/src/content/docs/ko/guides/deploy/netlify.mdx index 320e0ddd4627f..b60a30d62f3e2 100644 --- a/src/content/docs/ko/guides/deploy/netlify.mdx +++ b/src/content/docs/ko/guides/deploy/netlify.mdx @@ -4,6 +4,7 @@ description: Astro 사이트를 Netlify의 웹에 배포하는 방법. sidebar: label: Netlify type: deploy +service: Netlify i18nReady: true --- import ReadMore from '~/components/ReadMore.astro'; diff --git a/src/content/docs/ko/guides/deploy/railway.mdx b/src/content/docs/ko/guides/deploy/railway.mdx index 2a235de28eb63..f8bd6fd3bc638 100644 --- a/src/content/docs/ko/guides/deploy/railway.mdx +++ b/src/content/docs/ko/guides/deploy/railway.mdx @@ -4,6 +4,7 @@ description: Railway 웹 인터페이스를 사용하여 Astro 사이트를 배 sidebar: label: Railway type: deploy +service: Railway i18nReady: true stub: true --- diff --git a/src/content/docs/ko/guides/deploy/render.mdx b/src/content/docs/ko/guides/deploy/render.mdx index 960fdc9ed010c..f2436a669860f 100644 --- a/src/content/docs/ko/guides/deploy/render.mdx +++ b/src/content/docs/ko/guides/deploy/render.mdx @@ -4,6 +4,7 @@ description: Render를 사용하여 Astro 사이트를 웹에 배포하는 방 sidebar: label: Render type: deploy +service: Render i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/seenode.mdx b/src/content/docs/ko/guides/deploy/seenode.mdx index 02ad0a7776600..a8dcf8c801074 100644 --- a/src/content/docs/ko/guides/deploy/seenode.mdx +++ b/src/content/docs/ko/guides/deploy/seenode.mdx @@ -4,6 +4,7 @@ description: Seenode에서 웹에 Astro 사이트를 배포하는 방법. sidebar: label: Seenode type: deploy +service: Seenode i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/sst.mdx b/src/content/docs/ko/guides/deploy/sst.mdx index c6b327b64d05e..2b476dba8a181 100644 --- a/src/content/docs/ko/guides/deploy/sst.mdx +++ b/src/content/docs/ko/guides/deploy/sst.mdx @@ -4,6 +4,7 @@ description: SST를 사용하여 Astro 사이트를 AWS에 배포하는 방법 sidebar: label: SST type: deploy +service: AWS via SST i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/stormkit.mdx b/src/content/docs/ko/guides/deploy/stormkit.mdx index 911d7f09613ff..9076cecef2268 100644 --- a/src/content/docs/ko/guides/deploy/stormkit.mdx +++ b/src/content/docs/ko/guides/deploy/stormkit.mdx @@ -4,6 +4,7 @@ description: Astro 사이트를 Stormkit에 배포 sidebar: label: Stormkit type: deploy +service: Stormkit i18nReady: true --- import ReadMore from '~/components/ReadMore.astro'; diff --git a/src/content/docs/ko/guides/deploy/surge.mdx b/src/content/docs/ko/guides/deploy/surge.mdx index c854a48dfaef8..f4cfe93c15503 100644 --- a/src/content/docs/ko/guides/deploy/surge.mdx +++ b/src/content/docs/ko/guides/deploy/surge.mdx @@ -4,6 +4,7 @@ description: Surge를 사용하여 Astro 사이트를 웹에 배포하는 방법 sidebar: label: Surge type: deploy +service: Surge i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; From 88b006f548e5966d4ba63f40759b97d691a81fa6 Mon Sep 17 00:00:00 2001 From: sarahrainsberger Date: Tue, 18 Nov 2025 21:19:17 +0000 Subject: [PATCH 05/24] all ko translations done --- src/content/docs/ko/guides/deploy/vercel.mdx | 1 + src/content/docs/ko/guides/deploy/zeabur.mdx | 1 + src/content/docs/ko/guides/deploy/zephyr.mdx | 1 + src/content/docs/ko/guides/deploy/zerops.mdx | 1 + 4 files changed, 4 insertions(+) diff --git a/src/content/docs/ko/guides/deploy/vercel.mdx b/src/content/docs/ko/guides/deploy/vercel.mdx index fff3a9ab7e064..1574673674bbe 100644 --- a/src/content/docs/ko/guides/deploy/vercel.mdx +++ b/src/content/docs/ko/guides/deploy/vercel.mdx @@ -4,6 +4,7 @@ description: Vercel을 사용하여 Astro 사이트를 웹에 배포하는 방 sidebar: label: Vercel type: deploy +service: Vercel i18nReady: true --- import PackageManagerTabs from '~/components/tabs/PackageManagerTabs.astro'; diff --git a/src/content/docs/ko/guides/deploy/zeabur.mdx b/src/content/docs/ko/guides/deploy/zeabur.mdx index 048102843d555..4c5ba553b0a8a 100644 --- a/src/content/docs/ko/guides/deploy/zeabur.mdx +++ b/src/content/docs/ko/guides/deploy/zeabur.mdx @@ -4,6 +4,7 @@ description: Astro 사이트를 Zeabur의 웹에 배포하는 방법. sidebar: label: Zeabur type: deploy +service: Zeabur i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/zephyr.mdx b/src/content/docs/ko/guides/deploy/zephyr.mdx index a2c119825971d..ad00b94019aa3 100644 --- a/src/content/docs/ko/guides/deploy/zephyr.mdx +++ b/src/content/docs/ko/guides/deploy/zephyr.mdx @@ -4,6 +4,7 @@ description: Zephyr Cloud를 사용하여 Astro 사이트를 웹에 배포하는 sidebar: label: Zephyr Cloud type: deploy +service: Zephyr Cloud i18nReady: true --- diff --git a/src/content/docs/ko/guides/deploy/zerops.mdx b/src/content/docs/ko/guides/deploy/zerops.mdx index ef1aaa244539c..abc3b9caa0204 100644 --- a/src/content/docs/ko/guides/deploy/zerops.mdx +++ b/src/content/docs/ko/guides/deploy/zerops.mdx @@ -4,6 +4,7 @@ description: Zerops를 사용하여 Astro 사이트를 웹에 배포하는 방 sidebar: label: Zerops type: deploy +service: Zerops i18nReady: true --- import PackageManagerTabs from '~/components/tabs/PackageManagerTabs.astro' From df4a75a95e99a3eb533ca770b77b26fd76cfc57f Mon Sep 17 00:00:00 2001 From: sarahrainsberger Date: Tue, 18 Nov 2025 21:23:35 +0000 Subject: [PATCH 06/24] all translations except zh-cn --- src/content/docs/pt-br/guides/deploy/azion.mdx | 1 + src/content/docs/pt-br/guides/deploy/fleek.mdx | 1 + src/content/docs/pt-br/guides/deploy/stormkit.mdx | 1 + src/content/docs/pt-br/guides/deploy/zeabur.mdx | 1 + src/content/docs/pt-br/guides/deploy/zerops.mdx | 1 + src/content/docs/ru/guides/deploy/github.mdx | 1 + src/content/docs/zh-tw/guides/deploy/github.mdx | 1 + 7 files changed, 7 insertions(+) diff --git a/src/content/docs/pt-br/guides/deploy/azion.mdx b/src/content/docs/pt-br/guides/deploy/azion.mdx index 295dc43add1ba..e2d3741b75ba6 100644 --- a/src/content/docs/pt-br/guides/deploy/azion.mdx +++ b/src/content/docs/pt-br/guides/deploy/azion.mdx @@ -2,6 +2,7 @@ title: Publique seu Site Astro na Azion description: Como publicar seu site Astro na web usando Azion. type: deploy +service: Azion i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/pt-br/guides/deploy/fleek.mdx b/src/content/docs/pt-br/guides/deploy/fleek.mdx index 7def271ca4bbf..fe47f75ea3808 100644 --- a/src/content/docs/pt-br/guides/deploy/fleek.mdx +++ b/src/content/docs/pt-br/guides/deploy/fleek.mdx @@ -4,6 +4,7 @@ description: Como publicar seu site Astro na web com Fleek. sidebar: label: Fleek type: deploy +service: Fleek i18nReady: true --- diff --git a/src/content/docs/pt-br/guides/deploy/stormkit.mdx b/src/content/docs/pt-br/guides/deploy/stormkit.mdx index 8834e77fa56da..ad1f7103ec880 100644 --- a/src/content/docs/pt-br/guides/deploy/stormkit.mdx +++ b/src/content/docs/pt-br/guides/deploy/stormkit.mdx @@ -2,6 +2,7 @@ title: Publique seu Site Astro na Stormkit description: Publique seu site Astro com Stormkit type: deploy +service: Stormkit i18nReady: true --- import ReadMore from '~/components/ReadMore.astro'; diff --git a/src/content/docs/pt-br/guides/deploy/zeabur.mdx b/src/content/docs/pt-br/guides/deploy/zeabur.mdx index 9e1722d73637c..5088e005cdfc2 100644 --- a/src/content/docs/pt-br/guides/deploy/zeabur.mdx +++ b/src/content/docs/pt-br/guides/deploy/zeabur.mdx @@ -2,6 +2,7 @@ title: Publique seu site Astro na Zeabur description: Como publicar seu site Astro na web com Zeabur. type: deploy +service: Zeabur i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/pt-br/guides/deploy/zerops.mdx b/src/content/docs/pt-br/guides/deploy/zerops.mdx index 51a4f3cdbc99d..80819fe1fd9ab 100644 --- a/src/content/docs/pt-br/guides/deploy/zerops.mdx +++ b/src/content/docs/pt-br/guides/deploy/zerops.mdx @@ -2,6 +2,7 @@ title: Publique seu Site Astro na Zerops description: Como publicar seu site Astro na web com Zerops. type: deploy +service: Zerops i18nReady: true --- import PackageManagerTabs from '~/components/tabs/PackageManagerTabs.astro' diff --git a/src/content/docs/ru/guides/deploy/github.mdx b/src/content/docs/ru/guides/deploy/github.mdx index c872db63b9778..7d890c7f4393a 100644 --- a/src/content/docs/ru/guides/deploy/github.mdx +++ b/src/content/docs/ru/guides/deploy/github.mdx @@ -4,6 +4,7 @@ description: Как развернуть свой сайт Astro в интерн sidebar: label: GitHub Pages type: deploy +service: GitHub Pages i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-tw/guides/deploy/github.mdx b/src/content/docs/zh-tw/guides/deploy/github.mdx index 456fdeca00fe9..f4bd9eeda72f6 100644 --- a/src/content/docs/zh-tw/guides/deploy/github.mdx +++ b/src/content/docs/zh-tw/guides/deploy/github.mdx @@ -4,6 +4,7 @@ description: 如何透過 GitHub Pages 將 Astro 網站部署到網際網路上 sidebar: label: GitHub Pages type: deploy +service: GitHub Pages i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; From f11ebfbee1c9d47bbe054757fd66b7ff288ade79 Mon Sep 17 00:00:00 2001 From: sarahrainsberger Date: Tue, 18 Nov 2025 21:29:37 +0000 Subject: [PATCH 07/24] all translated guides now have service property --- src/content/docs/zh-cn/guides/deploy/aws.mdx | 1 + src/content/docs/zh-cn/guides/deploy/azion.mdx | 1 + src/content/docs/zh-cn/guides/deploy/buddy.mdx | 1 + src/content/docs/zh-cn/guides/deploy/cleavr.mdx | 1 + src/content/docs/zh-cn/guides/deploy/clever-cloud.mdx | 1 + src/content/docs/zh-cn/guides/deploy/cloudflare.mdx | 1 + src/content/docs/zh-cn/guides/deploy/cloudray.mdx | 1 + src/content/docs/zh-cn/guides/deploy/deno.mdx | 1 + src/content/docs/zh-cn/guides/deploy/fleek.mdx | 1 + src/content/docs/zh-cn/guides/deploy/flightcontrol.mdx | 1 + src/content/docs/zh-cn/guides/deploy/flyio.mdx | 2 +- src/content/docs/zh-cn/guides/deploy/github.mdx | 2 ++ src/content/docs/zh-cn/guides/deploy/gitlab.mdx | 1 + src/content/docs/zh-cn/guides/deploy/google-cloud.mdx | 1 + src/content/docs/zh-cn/guides/deploy/google-firebase.mdx | 1 + src/content/docs/zh-cn/guides/deploy/heroku.mdx | 1 + src/content/docs/zh-cn/guides/deploy/kinsta.mdx | 1 + src/content/docs/zh-cn/guides/deploy/microsoft-azure.mdx | 1 + src/content/docs/zh-cn/guides/deploy/netlify.mdx | 1 + src/content/docs/zh-cn/guides/deploy/railway.mdx | 1 + src/content/docs/zh-cn/guides/deploy/render.mdx | 1 + src/content/docs/zh-cn/guides/deploy/sst.mdx | 1 + src/content/docs/zh-cn/guides/deploy/stormkit.mdx | 1 + src/content/docs/zh-cn/guides/deploy/surge.mdx | 1 + src/content/docs/zh-cn/guides/deploy/vercel.mdx | 1 + src/content/docs/zh-cn/guides/deploy/zeabur.mdx | 1 + src/content/docs/zh-cn/guides/deploy/zerops.mdx | 1 + 27 files changed, 28 insertions(+), 1 deletion(-) diff --git a/src/content/docs/zh-cn/guides/deploy/aws.mdx b/src/content/docs/zh-cn/guides/deploy/aws.mdx index dcd40d7bd0e6c..c83efab9b0e1f 100644 --- a/src/content/docs/zh-cn/guides/deploy/aws.mdx +++ b/src/content/docs/zh-cn/guides/deploy/aws.mdx @@ -4,6 +4,7 @@ description: 如何将你的 Astro 网站通过 AWS 部署上线 sidebar: label: AWS type: deploy +service: AWS i18nReady: true --- import ReadMore from '~/components/ReadMore.astro'; diff --git a/src/content/docs/zh-cn/guides/deploy/azion.mdx b/src/content/docs/zh-cn/guides/deploy/azion.mdx index f4c154dfc8db2..a0bc887be3bc9 100644 --- a/src/content/docs/zh-cn/guides/deploy/azion.mdx +++ b/src/content/docs/zh-cn/guides/deploy/azion.mdx @@ -4,6 +4,7 @@ description: 如何使用 Azion 将你的 Astro 站点部署到网络。 sidebar: label: Azion type: deploy +service: Azion i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-cn/guides/deploy/buddy.mdx b/src/content/docs/zh-cn/guides/deploy/buddy.mdx index 4fbaa007b4acc..6df785bb1cfb9 100644 --- a/src/content/docs/zh-cn/guides/deploy/buddy.mdx +++ b/src/content/docs/zh-cn/guides/deploy/buddy.mdx @@ -4,6 +4,7 @@ description: 如何使用 Buddy 将你的 Astro 网站部署到网络上。 sidebar: label: Buddy type: deploy +service: Buddy i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-cn/guides/deploy/cleavr.mdx b/src/content/docs/zh-cn/guides/deploy/cleavr.mdx index 0adbd4e448574..b716d90190074 100644 --- a/src/content/docs/zh-cn/guides/deploy/cleavr.mdx +++ b/src/content/docs/zh-cn/guides/deploy/cleavr.mdx @@ -4,6 +4,7 @@ description: 如何将你的 Astro 网站通过 Cleavr 部署到你的 VPS 服 sidebar: label: Cleavr type: deploy +service: Cleavr i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-cn/guides/deploy/clever-cloud.mdx b/src/content/docs/zh-cn/guides/deploy/clever-cloud.mdx index e2cd79305b6b5..c243cc6c0a2e9 100644 --- a/src/content/docs/zh-cn/guides/deploy/clever-cloud.mdx +++ b/src/content/docs/zh-cn/guides/deploy/clever-cloud.mdx @@ -4,6 +4,7 @@ description: 如何使用 Clever Cloud 将你的 Astro 网站部署到网络。 sidebar: label: Clever Cloud type: deploy +service: Clever Cloud i18nReady: true --- import { Tabs, TabItem, Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-cn/guides/deploy/cloudflare.mdx b/src/content/docs/zh-cn/guides/deploy/cloudflare.mdx index 8634f5041e31b..a5beaa23016a1 100644 --- a/src/content/docs/zh-cn/guides/deploy/cloudflare.mdx +++ b/src/content/docs/zh-cn/guides/deploy/cloudflare.mdx @@ -4,6 +4,7 @@ description: 如何使用 Cloudflare 将你的 Astro 网站部署到网络上 sidebar: label: Cloudflare type: deploy +service: Cloudflare i18nReady: true --- import ReadMore from '~/components/ReadMore.astro'; diff --git a/src/content/docs/zh-cn/guides/deploy/cloudray.mdx b/src/content/docs/zh-cn/guides/deploy/cloudray.mdx index d796a748784e1..0fa069fe4251b 100644 --- a/src/content/docs/zh-cn/guides/deploy/cloudray.mdx +++ b/src/content/docs/zh-cn/guides/deploy/cloudray.mdx @@ -4,6 +4,7 @@ description: 如何使用 CloudRay 将 Astro 网站部署到 Ubuntu 服务器 sidebar: label: CloudRay type: deploy +service: CloudRay i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-cn/guides/deploy/deno.mdx b/src/content/docs/zh-cn/guides/deploy/deno.mdx index 7b6692267e3df..5452c9a942e47 100644 --- a/src/content/docs/zh-cn/guides/deploy/deno.mdx +++ b/src/content/docs/zh-cn/guides/deploy/deno.mdx @@ -4,6 +4,7 @@ description: 如何将你的 Astro 站点通过 Deno 部署上线。 sidebar: label: Deno type: deploy +service: Deno i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-cn/guides/deploy/fleek.mdx b/src/content/docs/zh-cn/guides/deploy/fleek.mdx index c94fbbd8b8870..750c1fe443fc6 100644 --- a/src/content/docs/zh-cn/guides/deploy/fleek.mdx +++ b/src/content/docs/zh-cn/guides/deploy/fleek.mdx @@ -4,6 +4,7 @@ description: 如何在 Fleek 上将你的 Astro 网站部署到网络上。 sidebar: label: Fleek type: deploy +service: Fleek i18nReady: true --- diff --git a/src/content/docs/zh-cn/guides/deploy/flightcontrol.mdx b/src/content/docs/zh-cn/guides/deploy/flightcontrol.mdx index bf0f6754d1cf8..aa9907576d6aa 100644 --- a/src/content/docs/zh-cn/guides/deploy/flightcontrol.mdx +++ b/src/content/docs/zh-cn/guides/deploy/flightcontrol.mdx @@ -4,6 +4,7 @@ description: 如何将你的 Astro 网站通过 Flightcontrol 部署到 AWS sidebar: label: Flightcontrol type: deploy +service: Flightcontrol i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-cn/guides/deploy/flyio.mdx b/src/content/docs/zh-cn/guides/deploy/flyio.mdx index 6b52ab27c59bc..ebfde3c50da12 100644 --- a/src/content/docs/zh-cn/guides/deploy/flyio.mdx +++ b/src/content/docs/zh-cn/guides/deploy/flyio.mdx @@ -4,8 +4,8 @@ description: 如何使用 Fly.io 将你的 Astro 站点部署到网络上。 sidebar: label: Fly.io type: deploy +service: Fly.io i18nReady: true -stub: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-cn/guides/deploy/github.mdx b/src/content/docs/zh-cn/guides/deploy/github.mdx index 753cf585d4b9b..fa7f11667eda6 100644 --- a/src/content/docs/zh-cn/guides/deploy/github.mdx +++ b/src/content/docs/zh-cn/guides/deploy/github.mdx @@ -4,6 +4,8 @@ description: 如何使用 GitHub Pages 将你的 Astro 网站部署到网络上 sidebar: label: GitHub Pages type: deploy +service: GitHub Pages +i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-cn/guides/deploy/gitlab.mdx b/src/content/docs/zh-cn/guides/deploy/gitlab.mdx index b21425b480351..73fa1c58c1df7 100644 --- a/src/content/docs/zh-cn/guides/deploy/gitlab.mdx +++ b/src/content/docs/zh-cn/guides/deploy/gitlab.mdx @@ -4,6 +4,7 @@ description: 如何使用 GitLab Pages 将你的 Astro 网站部署到网络上 sidebar: label: GitLab Pages type: deploy +service: GitLab Pages i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-cn/guides/deploy/google-cloud.mdx b/src/content/docs/zh-cn/guides/deploy/google-cloud.mdx index 2794178432666..f8d523bcf176e 100644 --- a/src/content/docs/zh-cn/guides/deploy/google-cloud.mdx +++ b/src/content/docs/zh-cn/guides/deploy/google-cloud.mdx @@ -4,6 +4,7 @@ description: 了解如何将你的 Astro 网页部署到 Google Cloud。 sidebar: label: Google Cloud type: deploy +service: Google Cloud i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-cn/guides/deploy/google-firebase.mdx b/src/content/docs/zh-cn/guides/deploy/google-firebase.mdx index d248059dd7185..1940dd34f43be 100644 --- a/src/content/docs/zh-cn/guides/deploy/google-firebase.mdx +++ b/src/content/docs/zh-cn/guides/deploy/google-firebase.mdx @@ -4,6 +4,7 @@ description: 了解如何将你的 Astro 网页部署到 Google Firebase。 sidebar: label: Google Firebase type: deploy +service: Google Firebase i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-cn/guides/deploy/heroku.mdx b/src/content/docs/zh-cn/guides/deploy/heroku.mdx index 79a18bd68a25c..cece3f6a52e05 100644 --- a/src/content/docs/zh-cn/guides/deploy/heroku.mdx +++ b/src/content/docs/zh-cn/guides/deploy/heroku.mdx @@ -4,6 +4,7 @@ description: 如何将你的 Astro 网站通过 Heroku 部署上线。 sidebar: label: Heroku type: deploy +service: Heroku i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-cn/guides/deploy/kinsta.mdx b/src/content/docs/zh-cn/guides/deploy/kinsta.mdx index 5e4c1f48d76a6..879cb813a58ab 100644 --- a/src/content/docs/zh-cn/guides/deploy/kinsta.mdx +++ b/src/content/docs/zh-cn/guides/deploy/kinsta.mdx @@ -4,6 +4,7 @@ description: 如何将你的 Astro 网站通过 Kinsta 应用托管部署上线 sidebar: label: Kinsta type: deploy +service: Kinsta i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-cn/guides/deploy/microsoft-azure.mdx b/src/content/docs/zh-cn/guides/deploy/microsoft-azure.mdx index 20e907b5d4b19..46031451d9abe 100644 --- a/src/content/docs/zh-cn/guides/deploy/microsoft-azure.mdx +++ b/src/content/docs/zh-cn/guides/deploy/microsoft-azure.mdx @@ -4,6 +4,7 @@ description: 如何将你的 Astro 网站通过 Microsoft Azure 部署上线。 sidebar: label: Microsoft Azure type: deploy +service: Microsoft Azure i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-cn/guides/deploy/netlify.mdx b/src/content/docs/zh-cn/guides/deploy/netlify.mdx index 7064fd295acc1..a74c69a06ab80 100644 --- a/src/content/docs/zh-cn/guides/deploy/netlify.mdx +++ b/src/content/docs/zh-cn/guides/deploy/netlify.mdx @@ -4,6 +4,7 @@ description: 如何使用 网站部署到网络上。Netlify 将你的 Astro 网 sidebar: label: Netlify type: deploy +service: Netlify i18nReady: true --- import ReadMore from '~/components/ReadMore.astro'; diff --git a/src/content/docs/zh-cn/guides/deploy/railway.mdx b/src/content/docs/zh-cn/guides/deploy/railway.mdx index 2e4f0730a5236..2a1c038b5da71 100644 --- a/src/content/docs/zh-cn/guides/deploy/railway.mdx +++ b/src/content/docs/zh-cn/guides/deploy/railway.mdx @@ -4,6 +4,7 @@ description: 如何使用 Railway Web 界面部署你的 Astro 站点。 sidebar: label: Railway type: deploy +service: Railway i18nReady: true stub: true --- diff --git a/src/content/docs/zh-cn/guides/deploy/render.mdx b/src/content/docs/zh-cn/guides/deploy/render.mdx index a03cc050d9cb7..ca0912563b890 100644 --- a/src/content/docs/zh-cn/guides/deploy/render.mdx +++ b/src/content/docs/zh-cn/guides/deploy/render.mdx @@ -4,6 +4,7 @@ description: 如何将你的 Astro 网站通过 Render 部署上线。 sidebar: label: Render type: deploy +service: Render i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-cn/guides/deploy/sst.mdx b/src/content/docs/zh-cn/guides/deploy/sst.mdx index ff81572ea0914..a868f042266be 100644 --- a/src/content/docs/zh-cn/guides/deploy/sst.mdx +++ b/src/content/docs/zh-cn/guides/deploy/sst.mdx @@ -4,6 +4,7 @@ description: 如何将你的 Astro 网站通过 SST 部署到 AWS sidebar: label: SST type: deploy +service: AWS via SST i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-cn/guides/deploy/stormkit.mdx b/src/content/docs/zh-cn/guides/deploy/stormkit.mdx index 7e0b7de1e751e..267f17666e09b 100644 --- a/src/content/docs/zh-cn/guides/deploy/stormkit.mdx +++ b/src/content/docs/zh-cn/guides/deploy/stormkit.mdx @@ -4,6 +4,7 @@ description: 将你的 Astro 网站部署到 Stormkit sidebar: label: Stormkit type: deploy +service: Stormkit i18nReady: true --- import ReadMore from '~/components/ReadMore.astro'; diff --git a/src/content/docs/zh-cn/guides/deploy/surge.mdx b/src/content/docs/zh-cn/guides/deploy/surge.mdx index ad11a2874f21c..3b6e2ea606556 100644 --- a/src/content/docs/zh-cn/guides/deploy/surge.mdx +++ b/src/content/docs/zh-cn/guides/deploy/surge.mdx @@ -4,6 +4,7 @@ description: 如何将你的 Astro 网站通过 Surge 部署上线 sidebar: label: Surge type: deploy +service: Surge i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-cn/guides/deploy/vercel.mdx b/src/content/docs/zh-cn/guides/deploy/vercel.mdx index 9bc8b67fc94e3..44007a2d6de52 100644 --- a/src/content/docs/zh-cn/guides/deploy/vercel.mdx +++ b/src/content/docs/zh-cn/guides/deploy/vercel.mdx @@ -3,6 +3,7 @@ title: 部署你的 Astro 站点至 Vercel description: 如何使用 Vercel 将你的 Astro 网站部署到网络上。 sidebar: label: Vercel +service: Vercel type: deploy --- import PackageManagerTabs from '~/components/tabs/PackageManagerTabs.astro'; diff --git a/src/content/docs/zh-cn/guides/deploy/zeabur.mdx b/src/content/docs/zh-cn/guides/deploy/zeabur.mdx index 4d4d393f1af7e..248c6f0d7d867 100644 --- a/src/content/docs/zh-cn/guides/deploy/zeabur.mdx +++ b/src/content/docs/zh-cn/guides/deploy/zeabur.mdx @@ -4,6 +4,7 @@ description: 如何将你的 Astro 站点部署到 Zeabur 的网络上。 sidebar: label: Zeabur type: deploy +service: Zeabur i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-cn/guides/deploy/zerops.mdx b/src/content/docs/zh-cn/guides/deploy/zerops.mdx index 098f0d0943a3c..29055d483e77a 100644 --- a/src/content/docs/zh-cn/guides/deploy/zerops.mdx +++ b/src/content/docs/zh-cn/guides/deploy/zerops.mdx @@ -4,6 +4,7 @@ description: 如何使用 Zerops 将你的 Astro 网站部署到网络。 sidebar: label: Zerops type: deploy +service: Zerops i18nReady: true --- import PackageManagerTabs from '~/components/tabs/PackageManagerTabs.astro' From f263fdc48f48ba2030e970a489fc4e9c841d7c52 Mon Sep 17 00:00:00 2001 From: sarahrainsberger Date: Tue, 18 Nov 2025 21:42:15 +0000 Subject: [PATCH 08/24] remove static paragraph text --- src/components/DeployGuidesNavAlpha.astro | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/components/DeployGuidesNavAlpha.astro b/src/components/DeployGuidesNavAlpha.astro index e70e12bba2242..d8036b5f0cdeb 100644 --- a/src/components/DeployGuidesNavAlpha.astro +++ b/src/components/DeployGuidesNavAlpha.astro @@ -74,8 +74,6 @@ const links = enPages // --- -

I am a grid

-
From c5bdd61ca31b26004f35be0022790959ecbe385c Mon Sep 17 00:00:00 2001 From: sarahrainsberger Date: Wed, 19 Nov 2025 14:41:48 +0000 Subject: [PATCH 09/24] remove unused import --- src/components/DeployGuidesNavAlpha.astro | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/DeployGuidesNavAlpha.astro b/src/components/DeployGuidesNavAlpha.astro index d8036b5f0cdeb..5be0cec99a0b7 100644 --- a/src/components/DeployGuidesNavAlpha.astro +++ b/src/components/DeployGuidesNavAlpha.astro @@ -3,7 +3,6 @@ import { englishPages } from '~/content'; import { getLanguageFromURL } from '~/util/path-utils'; import { isDeployEntry } from '~/content.config'; import CardsNav from './NavGrid/CardsNav.astro'; -import type { LogoKey } from '~/data/logos'; import { isLogoKey } from '~/data/logos'; // export interface Props { From 9356d20bd689265c26db7d6d74e7ab7042bf03f9 Mon Sep 17 00:00:00 2001 From: sarahrainsberger Date: Wed, 19 Nov 2025 15:03:58 +0000 Subject: [PATCH 10/24] add service to new translated guide --- src/content/docs/fr/guides/deploy/juno.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/content/docs/fr/guides/deploy/juno.mdx b/src/content/docs/fr/guides/deploy/juno.mdx index 370eae6b5024d..acc725d742c79 100644 --- a/src/content/docs/fr/guides/deploy/juno.mdx +++ b/src/content/docs/fr/guides/deploy/juno.mdx @@ -4,6 +4,7 @@ description: Comment déployer votre site Astro sur le web à l'aide de Juno. sidebar: label: Juno type: deploy +service: Juno i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; From 9a489915b6ed194126cdc2ed30ab823a8d21f320 Mon Sep 17 00:00:00 2001 From: sarahrainsberger Date: Wed, 19 Nov 2025 16:05:55 +0000 Subject: [PATCH 11/24] component working with hardcoded supports array --- src/components/DeployGuidesNavAlpha.astro | 33 +++++++---------------- 1 file changed, 9 insertions(+), 24 deletions(-) diff --git a/src/components/DeployGuidesNavAlpha.astro b/src/components/DeployGuidesNavAlpha.astro index 5be0cec99a0b7..35a49e1ea4500 100644 --- a/src/components/DeployGuidesNavAlpha.astro +++ b/src/components/DeployGuidesNavAlpha.astro @@ -5,19 +5,15 @@ import { isDeployEntry } from '~/content.config'; import CardsNav from './NavGrid/CardsNav.astro'; import { isLogoKey } from '~/data/logos'; -// export interface Props { -// minimal?: boolean; -// } - +export interface Props { + minimal?: boolean; +} -// const { minimal } = Astro.props as Props; +const { minimal } = Astro.props as Props; const lang = getLanguageFromURL(Astro.url.pathname); const enPages = englishPages.filter(isDeployEntry); - - - const links = enPages .sort((a, b) => { // Sort alphabetically. @@ -27,7 +23,9 @@ const links = enPages const { service } = page.data; const pageUrl = '/' + page.id.replace('en/', `${lang}/`) + '/'; const logo = isLogoKey(page.id.split('/').pop()); - return { title: service, href: pageUrl, logo }; + const supports = ['static', 'ssr']; + const tags = Object.fromEntries(supports.map((s) => [s, Astro.locals.t(`deploy.${s}Tag`)!])) + return { title: service, href: pageUrl, logo, tags }; }); // interface Service { @@ -70,21 +68,8 @@ const links = enPages // { title: 'Zephyr', slug: 'zephyr', supports: ['static'] }, // ]; -// ---
- -
- -{/* - ({ - title, - href: `/${lang}/guides/deploy/${slug}/`, - logo: slug, - tags: Object.fromEntries(supports.map((s) => [s, Astro.locals.t(`deploy.${s}Tag`)!])), - }))} -/> -*/} \ No newline at end of file + + \ No newline at end of file From 5545d3fccd4f480968952ff79a23c0c241d8d6c1 Mon Sep 17 00:00:00 2001 From: sarahrainsberger Date: Wed, 19 Nov 2025 16:12:12 +0000 Subject: [PATCH 12/24] works by setting a default static value in the schema --- src/components/DeployGuidesNavAlpha.astro | 2 +- src/content.config.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/DeployGuidesNavAlpha.astro b/src/components/DeployGuidesNavAlpha.astro index 35a49e1ea4500..9cdaa8535f055 100644 --- a/src/components/DeployGuidesNavAlpha.astro +++ b/src/components/DeployGuidesNavAlpha.astro @@ -23,7 +23,7 @@ const links = enPages const { service } = page.data; const pageUrl = '/' + page.id.replace('en/', `${lang}/`) + '/'; const logo = isLogoKey(page.id.split('/').pop()); - const supports = ['static', 'ssr']; + const { supports } = page.data; const tags = Object.fromEntries(supports.map((s) => [s, Astro.locals.t(`deploy.${s}Tag`)!])) return { title: service, href: pageUrl, logo, tags }; }); diff --git a/src/content.config.ts b/src/content.config.ts index 068ec9e9b85b7..59588c7fd4a08 100644 --- a/src/content.config.ts +++ b/src/content.config.ts @@ -24,6 +24,7 @@ export const baseSchema = z.object({ export const deploySchema = baseSchema.extend({ type: z.literal('deploy'), service: z.string(), + supports: z.array(z.enum(['static', 'ssr'])).default(['static']), }); export const backendSchema = baseSchema.extend({ From 6768d3fbd1a5be9f12f7a4675490f6aa8cd90960 Mon Sep 17 00:00:00 2001 From: sarahrainsberger Date: Wed, 19 Nov 2025 16:24:13 +0000 Subject: [PATCH 13/24] updated two test cases, they seem to work --- src/components/DeployGuidesNavAlpha.astro | 33 +++++++++++-------- src/content/docs/en/guides/deploy/netlify.mdx | 1 + src/content/docs/en/guides/deploy/seenode.mdx | 1 + src/content/docs/fr/guides/deploy/netlify.mdx | 1 + src/content/docs/fr/guides/deploy/seenode.mdx | 1 + src/content/docs/ko/guides/deploy/netlify.mdx | 1 + src/content/docs/ko/guides/deploy/seenode.mdx | 1 + .../docs/zh-cn/guides/deploy/netlify.mdx | 1 + 8 files changed, 27 insertions(+), 13 deletions(-) diff --git a/src/components/DeployGuidesNavAlpha.astro b/src/components/DeployGuidesNavAlpha.astro index 9cdaa8535f055..a0de1b0a64a49 100644 --- a/src/components/DeployGuidesNavAlpha.astro +++ b/src/components/DeployGuidesNavAlpha.astro @@ -35,11 +35,27 @@ const links = enPages // } // const services: Service[] = [ + + +// { title: 'GitHub Pages', slug: 'github', supports: ['static'] }, +// { title: 'GitLab Pages', slug: 'gitlab', supports: ['static'] }, +// { title: 'Heroku', slug: 'heroku', supports: ['static'] }, +// { title: 'Microsoft Azure', slug: 'microsoft-azure', supports: ['static'] }, +// { title: 'Buddy', slug: 'buddy', supports: ['static'] }, +// { title: 'DeployHQ', slug: 'deployhq', supports: ['static'] }, +// { title: 'Fleek', slug: 'fleek', supports: ['static'] }, +// { title: 'Juno', slug: 'juno', supports: ['static'] }, +// { title: 'Render', slug: 'render', supports: ['static'] }, +// { title: 'Stormkit', slug: 'stormkit', supports: ['static'] }, +// { title: 'Surge', slug: 'surge', supports: ['static'] }, +// { title: 'CloudRay', slug: 'cloudray', supports: ['static'] }, +// { title: 'Zephyr', slug: 'zephyr', supports: ['static'] }, + + + // { title: 'Netlify', slug: 'netlify', supports: ['ssr', 'static'] }, // { title: 'Vercel', slug: 'vercel', supports: ['ssr', 'static'] }, // { title: 'Deno Deploy', slug: 'deno', supports: ['ssr', 'static'] }, -// { title: 'GitHub Pages', slug: 'github', supports: ['static'] }, -// { title: 'GitLab Pages', slug: 'gitlab', supports: ['static'] }, // { title: 'Cloudflare Pages', slug: 'cloudflare', supports: ['ssr', 'static'] }, // { title: 'AWS', slug: 'aws', supports: ['ssr', 'static'] }, // { title: 'AWS via Flightcontrol', slug: 'flightcontrol', supports: ['ssr', 'static'] }, @@ -48,24 +64,15 @@ const links = enPages // { title: 'Azion', slug: 'azion', supports: ['ssr', 'static'] }, // { title: 'Google Cloud', slug: 'google-cloud', supports: ['ssr', 'static'] }, // { title: 'Google Firebase', slug: 'google-firebase', supports: ['ssr', 'static'] }, -// { title: 'Heroku', slug: 'heroku', supports: ['static'] }, -// { title: 'Microsoft Azure', slug: 'microsoft-azure', supports: ['static'] }, -// { title: 'Buddy', slug: 'buddy', supports: ['static'] }, -// { title: 'DeployHQ', slug: 'deployhq', supports: ['static'] }, -// { title: 'Fleek', slug: 'fleek', supports: ['static'] }, // { title: 'Fly.io', slug: 'flyio', supports: ['ssr', 'static'] }, -// { title: 'Juno', slug: 'juno', supports: ['static'] }, // { title: 'Railway', slug: 'railway', supports: ['ssr', 'static'] }, -// { title: 'Render', slug: 'render', supports: ['static'] }, -// { title: 'Stormkit', slug: 'stormkit', supports: ['static'] }, -// { title: 'Surge', slug: 'surge', supports: ['static'] }, // { title: 'Cleavr', slug: 'cleavr', supports: ['ssr', 'static'] }, // { title: 'Kinsta', slug: 'kinsta', supports: ['ssr', 'static'] }, // { title: 'Zeabur', slug: 'zeabur', supports: ['ssr', 'static'] }, // { title: 'Zerops', slug: 'zerops', supports: ['ssr', 'static'] }, -// { title: 'CloudRay', slug: 'cloudray', supports: ['static'] }, + + // { title: 'Seenode', slug: 'seenode', supports: ['ssr'] }, -// { title: 'Zephyr', slug: 'zephyr', supports: ['static'] }, // ]; --- diff --git a/src/content/docs/en/guides/deploy/netlify.mdx b/src/content/docs/en/guides/deploy/netlify.mdx index a26c2468ff759..53c6d34ac2b84 100644 --- a/src/content/docs/en/guides/deploy/netlify.mdx +++ b/src/content/docs/en/guides/deploy/netlify.mdx @@ -5,6 +5,7 @@ sidebar: label: Netlify type: deploy service: Netlify +supports: ['ssr', 'static'] i18nReady: true --- import ReadMore from '~/components/ReadMore.astro'; diff --git a/src/content/docs/en/guides/deploy/seenode.mdx b/src/content/docs/en/guides/deploy/seenode.mdx index e1229df672a80..d331b79af2fbd 100644 --- a/src/content/docs/en/guides/deploy/seenode.mdx +++ b/src/content/docs/en/guides/deploy/seenode.mdx @@ -5,6 +5,7 @@ sidebar: label: Seenode type: deploy service: Seenode +supports: ['ssr'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/fr/guides/deploy/netlify.mdx b/src/content/docs/fr/guides/deploy/netlify.mdx index 62d61592c32fb..08633ca78ef2e 100644 --- a/src/content/docs/fr/guides/deploy/netlify.mdx +++ b/src/content/docs/fr/guides/deploy/netlify.mdx @@ -5,6 +5,7 @@ sidebar: label: Netlify type: deploy service: Netlify +supports: ['ssr', 'static'] i18nReady: true --- import ReadMore from '~/components/ReadMore.astro'; diff --git a/src/content/docs/fr/guides/deploy/seenode.mdx b/src/content/docs/fr/guides/deploy/seenode.mdx index b5606ca1df081..c63f374b53a0f 100644 --- a/src/content/docs/fr/guides/deploy/seenode.mdx +++ b/src/content/docs/fr/guides/deploy/seenode.mdx @@ -5,6 +5,7 @@ sidebar: label: Seenode type: deploy service: Seenode +supports: ['ssr'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/netlify.mdx b/src/content/docs/ko/guides/deploy/netlify.mdx index b60a30d62f3e2..8f662ca23c2af 100644 --- a/src/content/docs/ko/guides/deploy/netlify.mdx +++ b/src/content/docs/ko/guides/deploy/netlify.mdx @@ -5,6 +5,7 @@ sidebar: label: Netlify type: deploy service: Netlify +supports: ['ssr', 'static'] i18nReady: true --- import ReadMore from '~/components/ReadMore.astro'; diff --git a/src/content/docs/ko/guides/deploy/seenode.mdx b/src/content/docs/ko/guides/deploy/seenode.mdx index a8dcf8c801074..c97895831b643 100644 --- a/src/content/docs/ko/guides/deploy/seenode.mdx +++ b/src/content/docs/ko/guides/deploy/seenode.mdx @@ -5,6 +5,7 @@ sidebar: label: Seenode type: deploy service: Seenode +supports: ['ssr'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-cn/guides/deploy/netlify.mdx b/src/content/docs/zh-cn/guides/deploy/netlify.mdx index a74c69a06ab80..cb86c4bbadf7c 100644 --- a/src/content/docs/zh-cn/guides/deploy/netlify.mdx +++ b/src/content/docs/zh-cn/guides/deploy/netlify.mdx @@ -5,6 +5,7 @@ sidebar: label: Netlify type: deploy service: Netlify +supports: ['ssr', 'static'] i18nReady: true --- import ReadMore from '~/components/ReadMore.astro'; From 112d3ff65a9ea455b1ccb1d32f00a766b2df228d Mon Sep 17 00:00:00 2001 From: sarahrainsberger Date: Wed, 19 Nov 2025 17:33:50 +0000 Subject: [PATCH 14/24] all deploy guides updated to include a supports array --- src/components/DeployGuidesNavAlpha.astro | 14 ++++++++------ src/content/docs/de/guides/deploy/buddy.mdx | 1 + src/content/docs/de/guides/deploy/cleavr.mdx | 1 + src/content/docs/de/guides/deploy/deno.mdx | 1 + .../docs/de/guides/deploy/flightcontrol.mdx | 3 ++- src/content/docs/de/guides/deploy/gitlab.mdx | 1 + src/content/docs/de/guides/deploy/google-cloud.mdx | 1 + src/content/docs/de/guides/deploy/heroku.mdx | 1 + src/content/docs/en/guides/deploy/aws.mdx | 1 + src/content/docs/en/guides/deploy/azion.mdx | 1 + src/content/docs/en/guides/deploy/buddy.mdx | 1 + src/content/docs/en/guides/deploy/cleavr.mdx | 1 + src/content/docs/en/guides/deploy/clever-cloud.mdx | 1 + src/content/docs/en/guides/deploy/cloudflare.mdx | 3 ++- src/content/docs/en/guides/deploy/cloudray.mdx | 1 + src/content/docs/en/guides/deploy/deno.mdx | 3 ++- src/content/docs/en/guides/deploy/deployhq.mdx | 1 + src/content/docs/en/guides/deploy/fleek.mdx | 1 + .../docs/en/guides/deploy/flightcontrol.mdx | 3 ++- src/content/docs/en/guides/deploy/flyio.mdx | 1 + src/content/docs/en/guides/deploy/github.mdx | 2 +- src/content/docs/en/guides/deploy/gitlab.mdx | 1 + src/content/docs/en/guides/deploy/google-cloud.mdx | 1 + .../docs/en/guides/deploy/google-firebase.mdx | 1 + src/content/docs/en/guides/deploy/heroku.mdx | 1 + src/content/docs/en/guides/deploy/juno.mdx | 1 + src/content/docs/en/guides/deploy/kinsta.mdx | 1 + .../docs/en/guides/deploy/microsoft-azure.mdx | 1 + src/content/docs/en/guides/deploy/railway.mdx | 1 + src/content/docs/en/guides/deploy/render.mdx | 1 + src/content/docs/en/guides/deploy/sst.mdx | 1 + src/content/docs/en/guides/deploy/stormkit.mdx | 1 + src/content/docs/en/guides/deploy/surge.mdx | 1 + src/content/docs/en/guides/deploy/vercel.mdx | 1 + src/content/docs/en/guides/deploy/zeabur.mdx | 1 + src/content/docs/en/guides/deploy/zephyr.mdx | 1 + src/content/docs/en/guides/deploy/zerops.mdx | 1 + src/content/docs/es/guides/deploy/azion.mdx | 1 + src/content/docs/es/guides/deploy/clever-cloud.mdx | 1 + src/content/docs/es/guides/deploy/cloudray.mdx | 1 + src/content/docs/es/guides/deploy/fleek.mdx | 1 + src/content/docs/es/guides/deploy/github.mdx | 1 + src/content/docs/es/guides/deploy/railway.mdx | 1 + src/content/docs/fr/guides/deploy/aws.mdx | 1 + src/content/docs/fr/guides/deploy/azion.mdx | 1 + src/content/docs/fr/guides/deploy/buddy.mdx | 1 + src/content/docs/fr/guides/deploy/cleavr.mdx | 1 + src/content/docs/fr/guides/deploy/clever-cloud.mdx | 1 + src/content/docs/fr/guides/deploy/cloudflare.mdx | 3 ++- src/content/docs/fr/guides/deploy/cloudray.mdx | 1 + src/content/docs/fr/guides/deploy/deno.mdx | 3 ++- src/content/docs/fr/guides/deploy/deployhq.mdx | 1 + src/content/docs/fr/guides/deploy/fleek.mdx | 1 + .../docs/fr/guides/deploy/flightcontrol.mdx | 3 ++- src/content/docs/fr/guides/deploy/flyio.mdx | 1 + src/content/docs/fr/guides/deploy/github.mdx | 1 + src/content/docs/fr/guides/deploy/gitlab.mdx | 1 + src/content/docs/fr/guides/deploy/google-cloud.mdx | 1 + .../docs/fr/guides/deploy/google-firebase.mdx | 3 ++- src/content/docs/fr/guides/deploy/heroku.mdx | 1 + src/content/docs/fr/guides/deploy/juno.mdx | 1 + src/content/docs/fr/guides/deploy/kinsta.mdx | 1 + .../docs/fr/guides/deploy/microsoft-azure.mdx | 1 + src/content/docs/fr/guides/deploy/railway.mdx | 1 + src/content/docs/fr/guides/deploy/render.mdx | 1 + src/content/docs/fr/guides/deploy/sst.mdx | 1 + src/content/docs/fr/guides/deploy/stormkit.mdx | 1 + src/content/docs/fr/guides/deploy/surge.mdx | 1 + src/content/docs/fr/guides/deploy/vercel.mdx | 1 + src/content/docs/fr/guides/deploy/zeabur.mdx | 1 + src/content/docs/fr/guides/deploy/zephyr.mdx | 1 + src/content/docs/fr/guides/deploy/zerops.mdx | 1 + src/content/docs/ja/guides/deploy/render.mdx | 1 + src/content/docs/ko/guides/deploy/aws.mdx | 1 + src/content/docs/ko/guides/deploy/azion.mdx | 1 + src/content/docs/ko/guides/deploy/buddy.mdx | 1 + src/content/docs/ko/guides/deploy/cleavr.mdx | 1 + src/content/docs/ko/guides/deploy/clever-cloud.mdx | 1 + src/content/docs/ko/guides/deploy/cloudflare.mdx | 3 ++- src/content/docs/ko/guides/deploy/cloudray.mdx | 1 + src/content/docs/ko/guides/deploy/deno.mdx | 3 ++- src/content/docs/ko/guides/deploy/deployhq.mdx | 1 + src/content/docs/ko/guides/deploy/fleek.mdx | 1 + .../docs/ko/guides/deploy/flightcontrol.mdx | 3 ++- src/content/docs/ko/guides/deploy/flyio.mdx | 1 + src/content/docs/ko/guides/deploy/github.mdx | 3 ++- src/content/docs/ko/guides/deploy/gitlab.mdx | 3 ++- src/content/docs/ko/guides/deploy/google-cloud.mdx | 3 ++- .../docs/ko/guides/deploy/google-firebase.mdx | 3 ++- src/content/docs/ko/guides/deploy/heroku.mdx | 1 + src/content/docs/ko/guides/deploy/juno.mdx | 1 + src/content/docs/ko/guides/deploy/kinsta.mdx | 1 + .../docs/ko/guides/deploy/microsoft-azure.mdx | 1 + src/content/docs/ko/guides/deploy/railway.mdx | 1 + src/content/docs/ko/guides/deploy/render.mdx | 1 + src/content/docs/ko/guides/deploy/sst.mdx | 1 + src/content/docs/ko/guides/deploy/stormkit.mdx | 1 + src/content/docs/ko/guides/deploy/surge.mdx | 1 + src/content/docs/ko/guides/deploy/vercel.mdx | 1 + src/content/docs/ko/guides/deploy/zeabur.mdx | 1 + src/content/docs/ko/guides/deploy/zephyr.mdx | 1 + src/content/docs/ko/guides/deploy/zerops.mdx | 1 + src/content/docs/pt-br/guides/deploy/azion.mdx | 1 + src/content/docs/pt-br/guides/deploy/fleek.mdx | 1 + src/content/docs/pt-br/guides/deploy/stormkit.mdx | 1 + src/content/docs/pt-br/guides/deploy/zeabur.mdx | 1 + src/content/docs/pt-br/guides/deploy/zerops.mdx | 1 + src/content/docs/ru/guides/deploy/github.mdx | 1 + src/content/docs/zh-cn/guides/deploy/aws.mdx | 1 + src/content/docs/zh-cn/guides/deploy/azion.mdx | 1 + src/content/docs/zh-cn/guides/deploy/buddy.mdx | 1 + src/content/docs/zh-cn/guides/deploy/cleavr.mdx | 1 + .../docs/zh-cn/guides/deploy/clever-cloud.mdx | 1 + .../docs/zh-cn/guides/deploy/cloudflare.mdx | 3 ++- src/content/docs/zh-cn/guides/deploy/cloudray.mdx | 1 + src/content/docs/zh-cn/guides/deploy/deno.mdx | 3 ++- src/content/docs/zh-cn/guides/deploy/fleek.mdx | 1 + .../docs/zh-cn/guides/deploy/flightcontrol.mdx | 3 ++- src/content/docs/zh-cn/guides/deploy/flyio.mdx | 1 + src/content/docs/zh-cn/guides/deploy/github.mdx | 1 + src/content/docs/zh-cn/guides/deploy/gitlab.mdx | 1 + .../docs/zh-cn/guides/deploy/google-cloud.mdx | 1 + .../docs/zh-cn/guides/deploy/google-firebase.mdx | 3 ++- src/content/docs/zh-cn/guides/deploy/heroku.mdx | 1 + src/content/docs/zh-cn/guides/deploy/kinsta.mdx | 1 + .../docs/zh-cn/guides/deploy/microsoft-azure.mdx | 1 + src/content/docs/zh-cn/guides/deploy/railway.mdx | 1 + src/content/docs/zh-cn/guides/deploy/render.mdx | 1 + src/content/docs/zh-cn/guides/deploy/sst.mdx | 1 + src/content/docs/zh-cn/guides/deploy/stormkit.mdx | 1 + src/content/docs/zh-cn/guides/deploy/surge.mdx | 1 + src/content/docs/zh-cn/guides/deploy/vercel.mdx | 2 ++ src/content/docs/zh-cn/guides/deploy/zeabur.mdx | 1 + src/content/docs/zh-cn/guides/deploy/zerops.mdx | 1 + src/content/docs/zh-tw/guides/deploy/github.mdx | 1 + 135 files changed, 162 insertions(+), 26 deletions(-) diff --git a/src/components/DeployGuidesNavAlpha.astro b/src/components/DeployGuidesNavAlpha.astro index a0de1b0a64a49..acb38d7ceb9e2 100644 --- a/src/components/DeployGuidesNavAlpha.astro +++ b/src/components/DeployGuidesNavAlpha.astro @@ -37,18 +37,20 @@ const links = enPages // const services: Service[] = [ -// { title: 'GitHub Pages', slug: 'github', supports: ['static'] }, -// { title: 'GitLab Pages', slug: 'gitlab', supports: ['static'] }, -// { title: 'Heroku', slug: 'heroku', supports: ['static'] }, -// { title: 'Microsoft Azure', slug: 'microsoft-azure', supports: ['static'] }, + + // { title: 'Buddy', slug: 'buddy', supports: ['static'] }, +// { title: 'CloudRay', slug: 'cloudray', supports: ['static'] }, // { title: 'DeployHQ', slug: 'deployhq', supports: ['static'] }, // { title: 'Fleek', slug: 'fleek', supports: ['static'] }, +// { title: 'GitHub Pages', slug: 'github', supports: ['static'] }, +// { title: 'GitLab Pages', slug: 'gitlab', supports: ['static'] }, +// { title: 'Heroku', slug: 'heroku', supports: ['static'] }, // { title: 'Juno', slug: 'juno', supports: ['static'] }, +// { title: 'Microsoft Azure', slug: 'microsoft-azure', supports: ['static'] }, // { title: 'Render', slug: 'render', supports: ['static'] }, // { title: 'Stormkit', slug: 'stormkit', supports: ['static'] }, // { title: 'Surge', slug: 'surge', supports: ['static'] }, -// { title: 'CloudRay', slug: 'cloudray', supports: ['static'] }, // { title: 'Zephyr', slug: 'zephyr', supports: ['static'] }, @@ -78,5 +80,5 @@ const links = enPages ---
- +
\ No newline at end of file diff --git a/src/content/docs/de/guides/deploy/buddy.mdx b/src/content/docs/de/guides/deploy/buddy.mdx index 5c57f3981f732..5984ed151346b 100644 --- a/src/content/docs/de/guides/deploy/buddy.mdx +++ b/src/content/docs/de/guides/deploy/buddy.mdx @@ -5,6 +5,7 @@ sidebar: label: Buddy type: deploy service: Buddy +supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/de/guides/deploy/cleavr.mdx b/src/content/docs/de/guides/deploy/cleavr.mdx index 93c140ef52e86..01cca682bd6a9 100644 --- a/src/content/docs/de/guides/deploy/cleavr.mdx +++ b/src/content/docs/de/guides/deploy/cleavr.mdx @@ -5,6 +5,7 @@ sidebar: label: Cleavr type: deploy service: Cleavr +supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/de/guides/deploy/deno.mdx b/src/content/docs/de/guides/deploy/deno.mdx index 601bb131083d0..ff2904127c273 100644 --- a/src/content/docs/de/guides/deploy/deno.mdx +++ b/src/content/docs/de/guides/deploy/deno.mdx @@ -5,6 +5,7 @@ sidebar: label: Deno type: deploy service: Deno Deploy +supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/de/guides/deploy/flightcontrol.mdx b/src/content/docs/de/guides/deploy/flightcontrol.mdx index c5666453100f1..a0905f18485d9 100644 --- a/src/content/docs/de/guides/deploy/flightcontrol.mdx +++ b/src/content/docs/de/guides/deploy/flightcontrol.mdx @@ -4,7 +4,8 @@ description: Wie du deine Astro-Website mit Flightcontrol auf AWS veröffentlich sidebar: label: Flightcontrol type: deploy -service: Flightcontrol +service: AWS via Flightcontrol +supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/de/guides/deploy/gitlab.mdx b/src/content/docs/de/guides/deploy/gitlab.mdx index e0a718f3cca09..5444ff075677c 100644 --- a/src/content/docs/de/guides/deploy/gitlab.mdx +++ b/src/content/docs/de/guides/deploy/gitlab.mdx @@ -5,6 +5,7 @@ sidebar: label: GitLab Pages type: deploy service: GitLab Pages +supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/de/guides/deploy/google-cloud.mdx b/src/content/docs/de/guides/deploy/google-cloud.mdx index d71e2e83d96f4..24de914d45ed4 100644 --- a/src/content/docs/de/guides/deploy/google-cloud.mdx +++ b/src/content/docs/de/guides/deploy/google-cloud.mdx @@ -5,6 +5,7 @@ sidebar: label: Google Cloud type: deploy service: Google Cloud +supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/de/guides/deploy/heroku.mdx b/src/content/docs/de/guides/deploy/heroku.mdx index 568e6e6844dda..0f68f3b6458b6 100644 --- a/src/content/docs/de/guides/deploy/heroku.mdx +++ b/src/content/docs/de/guides/deploy/heroku.mdx @@ -5,6 +5,7 @@ sidebar: label: Heroku type: deploy service: Heroku +supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/en/guides/deploy/aws.mdx b/src/content/docs/en/guides/deploy/aws.mdx index bd89a60fb80d0..5a8c361e64cbc 100644 --- a/src/content/docs/en/guides/deploy/aws.mdx +++ b/src/content/docs/en/guides/deploy/aws.mdx @@ -5,6 +5,7 @@ sidebar: label: AWS type: deploy service: AWS +supports: ['ssr', 'static'] i18nReady: true --- import ReadMore from '~/components/ReadMore.astro'; diff --git a/src/content/docs/en/guides/deploy/azion.mdx b/src/content/docs/en/guides/deploy/azion.mdx index fb28e405b2f6d..abe524ae39356 100644 --- a/src/content/docs/en/guides/deploy/azion.mdx +++ b/src/content/docs/en/guides/deploy/azion.mdx @@ -5,6 +5,7 @@ sidebar: label: Azion type: deploy service: Azion +supports: ['ssr', 'static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/en/guides/deploy/buddy.mdx b/src/content/docs/en/guides/deploy/buddy.mdx index 855b5c441dd3b..579c1a37ff59e 100644 --- a/src/content/docs/en/guides/deploy/buddy.mdx +++ b/src/content/docs/en/guides/deploy/buddy.mdx @@ -5,6 +5,7 @@ sidebar: label: Buddy type: deploy service: Buddy +supports: ['static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/en/guides/deploy/cleavr.mdx b/src/content/docs/en/guides/deploy/cleavr.mdx index d455e81643bc7..0de914ef057a2 100644 --- a/src/content/docs/en/guides/deploy/cleavr.mdx +++ b/src/content/docs/en/guides/deploy/cleavr.mdx @@ -5,6 +5,7 @@ sidebar: label: Cleavr type: deploy service: Cleavr +supports: ['ssr', 'static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/en/guides/deploy/clever-cloud.mdx b/src/content/docs/en/guides/deploy/clever-cloud.mdx index 4670041bd489a..73dab8d516193 100644 --- a/src/content/docs/en/guides/deploy/clever-cloud.mdx +++ b/src/content/docs/en/guides/deploy/clever-cloud.mdx @@ -5,6 +5,7 @@ sidebar: label: Clever Cloud type: deploy service: Clever Cloud +supports: ['static', 'ssr'] i18nReady: true --- import { Tabs, TabItem, Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/en/guides/deploy/cloudflare.mdx b/src/content/docs/en/guides/deploy/cloudflare.mdx index 3f2967f34b281..bdd871bef9fb9 100644 --- a/src/content/docs/en/guides/deploy/cloudflare.mdx +++ b/src/content/docs/en/guides/deploy/cloudflare.mdx @@ -4,7 +4,8 @@ description: How to deploy your Astro site to the web using Cloudflare sidebar: label: Cloudflare type: deploy -service: Cloudflare +service: Cloudflare Pages +supports: ['ssr', 'static'] i18nReady: true --- import ReadMore from '~/components/ReadMore.astro'; diff --git a/src/content/docs/en/guides/deploy/cloudray.mdx b/src/content/docs/en/guides/deploy/cloudray.mdx index 42748d331e854..9f5149efe702a 100644 --- a/src/content/docs/en/guides/deploy/cloudray.mdx +++ b/src/content/docs/en/guides/deploy/cloudray.mdx @@ -5,6 +5,7 @@ sidebar: label: CloudRay type: deploy service: CloudRay +supports: ['static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/en/guides/deploy/deno.mdx b/src/content/docs/en/guides/deploy/deno.mdx index dc8a99e3fa2d2..0ac183dd42a0b 100644 --- a/src/content/docs/en/guides/deploy/deno.mdx +++ b/src/content/docs/en/guides/deploy/deno.mdx @@ -4,7 +4,8 @@ description: How to deploy your Astro site to the web using Deno. sidebar: label: Deno type: deploy -service: Deno +service: Deno Deploy +supports: ['ssr', 'static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/en/guides/deploy/deployhq.mdx b/src/content/docs/en/guides/deploy/deployhq.mdx index a11c3c862398c..dbbc4a92d3d63 100644 --- a/src/content/docs/en/guides/deploy/deployhq.mdx +++ b/src/content/docs/en/guides/deploy/deployhq.mdx @@ -5,6 +5,7 @@ sidebar: label: DeployHQ type: deploy service: DeployHQ +supports: ['static'] i18nReady: true --- import ReadMore from '~/components/ReadMore.astro'; diff --git a/src/content/docs/en/guides/deploy/fleek.mdx b/src/content/docs/en/guides/deploy/fleek.mdx index bf19b38c63e99..3ec89ad4feb3d 100644 --- a/src/content/docs/en/guides/deploy/fleek.mdx +++ b/src/content/docs/en/guides/deploy/fleek.mdx @@ -5,6 +5,7 @@ sidebar: label: Fleek type: deploy service: Fleek +supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/en/guides/deploy/flightcontrol.mdx b/src/content/docs/en/guides/deploy/flightcontrol.mdx index 29b5cafb9dfe7..44aec8f44a2a9 100644 --- a/src/content/docs/en/guides/deploy/flightcontrol.mdx +++ b/src/content/docs/en/guides/deploy/flightcontrol.mdx @@ -4,7 +4,8 @@ description: How to deploy your Astro site to AWS with Flightcontrol sidebar: label: Flightcontrol type: deploy -service: Flightcontrol +service: AWS via Flightcontrol +supports: ['ssr', 'static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/en/guides/deploy/flyio.mdx b/src/content/docs/en/guides/deploy/flyio.mdx index ac694b0e986d8..b86537bb365d1 100644 --- a/src/content/docs/en/guides/deploy/flyio.mdx +++ b/src/content/docs/en/guides/deploy/flyio.mdx @@ -5,6 +5,7 @@ sidebar: label: Fly.io type: deploy service: Fly.io +supports: ['ssr', 'static'] i18nReady: true stub: true --- diff --git a/src/content/docs/en/guides/deploy/github.mdx b/src/content/docs/en/guides/deploy/github.mdx index 171a753360b8c..76b67cf8a99ea 100644 --- a/src/content/docs/en/guides/deploy/github.mdx +++ b/src/content/docs/en/guides/deploy/github.mdx @@ -5,7 +5,7 @@ sidebar: label: GitHub Pages type: deploy service: GitHub Pages ---- +supports: ['static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/en/guides/deploy/gitlab.mdx b/src/content/docs/en/guides/deploy/gitlab.mdx index 2c33eae34a52b..c13929d7403f2 100644 --- a/src/content/docs/en/guides/deploy/gitlab.mdx +++ b/src/content/docs/en/guides/deploy/gitlab.mdx @@ -5,6 +5,7 @@ sidebar: label: GitLab Pages type: deploy service: GitLab Pages +supports: ['static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/en/guides/deploy/google-cloud.mdx b/src/content/docs/en/guides/deploy/google-cloud.mdx index 7ef56c84f61e6..af2353a7860f3 100644 --- a/src/content/docs/en/guides/deploy/google-cloud.mdx +++ b/src/content/docs/en/guides/deploy/google-cloud.mdx @@ -5,6 +5,7 @@ sidebar: label: Google Cloud type: deploy service: Google Cloud +supports: ['ssr', 'static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/en/guides/deploy/google-firebase.mdx b/src/content/docs/en/guides/deploy/google-firebase.mdx index 5814ec2c767d1..4e68473c770ec 100644 --- a/src/content/docs/en/guides/deploy/google-firebase.mdx +++ b/src/content/docs/en/guides/deploy/google-firebase.mdx @@ -5,6 +5,7 @@ sidebar: label: Google Firebase type: deploy service: Google Firebase Hosting +supports: ['ssr', 'static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/en/guides/deploy/heroku.mdx b/src/content/docs/en/guides/deploy/heroku.mdx index 878df62cf016f..aaf46b159f0d8 100644 --- a/src/content/docs/en/guides/deploy/heroku.mdx +++ b/src/content/docs/en/guides/deploy/heroku.mdx @@ -5,6 +5,7 @@ sidebar: label: Heroku type: deploy service: Heroku +supports: ['static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/en/guides/deploy/juno.mdx b/src/content/docs/en/guides/deploy/juno.mdx index 97dbb7b255f0a..d5ef4b6a9f9a7 100644 --- a/src/content/docs/en/guides/deploy/juno.mdx +++ b/src/content/docs/en/guides/deploy/juno.mdx @@ -5,6 +5,7 @@ sidebar: label: Juno type: deploy service: Juno +supports: ['static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/en/guides/deploy/kinsta.mdx b/src/content/docs/en/guides/deploy/kinsta.mdx index 18743a4d4360a..2b316f974a30b 100644 --- a/src/content/docs/en/guides/deploy/kinsta.mdx +++ b/src/content/docs/en/guides/deploy/kinsta.mdx @@ -5,6 +5,7 @@ sidebar: label: Kinsta type: deploy service: Kinsta +supports: ['ssr', 'static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/en/guides/deploy/microsoft-azure.mdx b/src/content/docs/en/guides/deploy/microsoft-azure.mdx index 6363d53416edd..cd49d067d21ea 100644 --- a/src/content/docs/en/guides/deploy/microsoft-azure.mdx +++ b/src/content/docs/en/guides/deploy/microsoft-azure.mdx @@ -5,6 +5,7 @@ sidebar: label: Microsoft Azure type: deploy service: Microsoft Azure +supports: ['static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/en/guides/deploy/railway.mdx b/src/content/docs/en/guides/deploy/railway.mdx index 6e022c9aecfeb..5989485f7effd 100644 --- a/src/content/docs/en/guides/deploy/railway.mdx +++ b/src/content/docs/en/guides/deploy/railway.mdx @@ -6,6 +6,7 @@ sidebar: type: deploy i18nReady: true service: Railway +supports: ['ssr', 'static'] stub: true --- diff --git a/src/content/docs/en/guides/deploy/render.mdx b/src/content/docs/en/guides/deploy/render.mdx index 926070d691093..ae439f243d838 100644 --- a/src/content/docs/en/guides/deploy/render.mdx +++ b/src/content/docs/en/guides/deploy/render.mdx @@ -5,6 +5,7 @@ sidebar: label: Render type: deploy service: Render +supports: ['static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/en/guides/deploy/sst.mdx b/src/content/docs/en/guides/deploy/sst.mdx index 4e805f61b92a8..0a245a97af244 100644 --- a/src/content/docs/en/guides/deploy/sst.mdx +++ b/src/content/docs/en/guides/deploy/sst.mdx @@ -5,6 +5,7 @@ sidebar: label: SST type: deploy service: AWS via SST +supports: ['ssr', 'static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/en/guides/deploy/stormkit.mdx b/src/content/docs/en/guides/deploy/stormkit.mdx index d968c14368aaf..0845c066fb47b 100644 --- a/src/content/docs/en/guides/deploy/stormkit.mdx +++ b/src/content/docs/en/guides/deploy/stormkit.mdx @@ -5,6 +5,7 @@ sidebar: label: Stormkit type: deploy service: Stormkit +supports: ['static'] i18nReady: true --- import ReadMore from '~/components/ReadMore.astro'; diff --git a/src/content/docs/en/guides/deploy/surge.mdx b/src/content/docs/en/guides/deploy/surge.mdx index a03ee6ab2b1a6..4cb40be139672 100644 --- a/src/content/docs/en/guides/deploy/surge.mdx +++ b/src/content/docs/en/guides/deploy/surge.mdx @@ -5,6 +5,7 @@ sidebar: label: Surge type: deploy service: Surge +supports: ['static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/en/guides/deploy/vercel.mdx b/src/content/docs/en/guides/deploy/vercel.mdx index 588ccb184fdd9..60a9a002ae2b5 100644 --- a/src/content/docs/en/guides/deploy/vercel.mdx +++ b/src/content/docs/en/guides/deploy/vercel.mdx @@ -5,6 +5,7 @@ sidebar: label: Vercel type: deploy service: Vercel +supports: ['ssr', 'static'] i18nReady: true --- import PackageManagerTabs from '~/components/tabs/PackageManagerTabs.astro'; diff --git a/src/content/docs/en/guides/deploy/zeabur.mdx b/src/content/docs/en/guides/deploy/zeabur.mdx index 41d918a2b7833..4f459407d7f46 100644 --- a/src/content/docs/en/guides/deploy/zeabur.mdx +++ b/src/content/docs/en/guides/deploy/zeabur.mdx @@ -5,6 +5,7 @@ sidebar: label: Zeabur type: deploy service: Zeabur +supports: ['ssr', 'static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/en/guides/deploy/zephyr.mdx b/src/content/docs/en/guides/deploy/zephyr.mdx index 23b021581d076..fc5f3917477c2 100644 --- a/src/content/docs/en/guides/deploy/zephyr.mdx +++ b/src/content/docs/en/guides/deploy/zephyr.mdx @@ -5,6 +5,7 @@ sidebar: label: Zephyr Cloud type: deploy service: Zephyr Cloud +supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/en/guides/deploy/zerops.mdx b/src/content/docs/en/guides/deploy/zerops.mdx index b3aafa8fc823c..d798546522d66 100644 --- a/src/content/docs/en/guides/deploy/zerops.mdx +++ b/src/content/docs/en/guides/deploy/zerops.mdx @@ -5,6 +5,7 @@ sidebar: label: Zerops type: deploy service: Zerops +supports: ['ssr', 'static'] i18nReady: true --- import PackageManagerTabs from '~/components/tabs/PackageManagerTabs.astro' diff --git a/src/content/docs/es/guides/deploy/azion.mdx b/src/content/docs/es/guides/deploy/azion.mdx index eefb084235333..614f74bbff558 100644 --- a/src/content/docs/es/guides/deploy/azion.mdx +++ b/src/content/docs/es/guides/deploy/azion.mdx @@ -5,6 +5,7 @@ sidebar: label: Azion type: deploy service: Azion +supports: ['ssr', 'static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/es/guides/deploy/clever-cloud.mdx b/src/content/docs/es/guides/deploy/clever-cloud.mdx index 4be7706be9d81..a88139a7e1d20 100644 --- a/src/content/docs/es/guides/deploy/clever-cloud.mdx +++ b/src/content/docs/es/guides/deploy/clever-cloud.mdx @@ -5,6 +5,7 @@ sidebar: label: Clever Cloud type: deploy service: Clever Cloud +supports: ['static', 'ssr'] i18nReady: true --- import { Tabs, TabItem, Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/es/guides/deploy/cloudray.mdx b/src/content/docs/es/guides/deploy/cloudray.mdx index ad6896cb883fc..6339f743436ca 100644 --- a/src/content/docs/es/guides/deploy/cloudray.mdx +++ b/src/content/docs/es/guides/deploy/cloudray.mdx @@ -5,6 +5,7 @@ sidebar: label: CloudRay type: deploy service: CloudRay +supports: ['static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/es/guides/deploy/fleek.mdx b/src/content/docs/es/guides/deploy/fleek.mdx index e523869d67955..cc2b609fb4c47 100644 --- a/src/content/docs/es/guides/deploy/fleek.mdx +++ b/src/content/docs/es/guides/deploy/fleek.mdx @@ -5,6 +5,7 @@ sidebar: label: Fleek type: deploy service: Fleek +supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/es/guides/deploy/github.mdx b/src/content/docs/es/guides/deploy/github.mdx index 52e8b942250d5..e5807880d30a8 100644 --- a/src/content/docs/es/guides/deploy/github.mdx +++ b/src/content/docs/es/guides/deploy/github.mdx @@ -5,6 +5,7 @@ sidebar: label: GitHub Pages type: deploy service: GitHub Pages +supports: ['static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/es/guides/deploy/railway.mdx b/src/content/docs/es/guides/deploy/railway.mdx index ebe71ae3a3d99..ed9cf329e4612 100644 --- a/src/content/docs/es/guides/deploy/railway.mdx +++ b/src/content/docs/es/guides/deploy/railway.mdx @@ -5,6 +5,7 @@ sidebar: label: Railway type: deploy service: Railway +supports: ['ssr', 'static'] i18nReady: true stub: true --- diff --git a/src/content/docs/fr/guides/deploy/aws.mdx b/src/content/docs/fr/guides/deploy/aws.mdx index 0be07b4499f32..0ccb411e4d342 100644 --- a/src/content/docs/fr/guides/deploy/aws.mdx +++ b/src/content/docs/fr/guides/deploy/aws.mdx @@ -5,6 +5,7 @@ sidebar: label: AWS type: deploy service: AWS +supports: ['ssr', 'static'] i18nReady: true --- import ReadMore from '~/components/ReadMore.astro'; diff --git a/src/content/docs/fr/guides/deploy/azion.mdx b/src/content/docs/fr/guides/deploy/azion.mdx index 9c8ffd19e293a..ffbd3a882b773 100644 --- a/src/content/docs/fr/guides/deploy/azion.mdx +++ b/src/content/docs/fr/guides/deploy/azion.mdx @@ -5,6 +5,7 @@ sidebar: label: Azion type: deploy service: Azion +supports: ['ssr', 'static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/fr/guides/deploy/buddy.mdx b/src/content/docs/fr/guides/deploy/buddy.mdx index 0b286809311a9..ef013adbd783b 100644 --- a/src/content/docs/fr/guides/deploy/buddy.mdx +++ b/src/content/docs/fr/guides/deploy/buddy.mdx @@ -5,6 +5,7 @@ sidebar: label: Buddy type: deploy service: Buddy +supports: ['static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/fr/guides/deploy/cleavr.mdx b/src/content/docs/fr/guides/deploy/cleavr.mdx index 7ca4e198b718a..2a01679939ce7 100644 --- a/src/content/docs/fr/guides/deploy/cleavr.mdx +++ b/src/content/docs/fr/guides/deploy/cleavr.mdx @@ -5,6 +5,7 @@ sidebar: label: Cleavr type: deploy service: Cleavr +supports: ['ssr', 'static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/fr/guides/deploy/clever-cloud.mdx b/src/content/docs/fr/guides/deploy/clever-cloud.mdx index 2d20ce69926db..9a8df6439a634 100644 --- a/src/content/docs/fr/guides/deploy/clever-cloud.mdx +++ b/src/content/docs/fr/guides/deploy/clever-cloud.mdx @@ -5,6 +5,7 @@ sidebar: label: Clever Cloud type: deploy service: Clever Cloud +supports: ['static', 'ssr'] i18nReady: true --- import { Tabs, TabItem, Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/fr/guides/deploy/cloudflare.mdx b/src/content/docs/fr/guides/deploy/cloudflare.mdx index 30d9d92b3a98a..bfd6892e0179c 100644 --- a/src/content/docs/fr/guides/deploy/cloudflare.mdx +++ b/src/content/docs/fr/guides/deploy/cloudflare.mdx @@ -4,7 +4,8 @@ description: Comment déployer votre site Astro sur le web en utilisant Cloudfla sidebar: label: Cloudflare type: deploy -service: Cloudflare +service: Cloudflare Pages +supports: ['ssr', 'static'] i18nReady: true --- import ReadMore from '~/components/ReadMore.astro'; diff --git a/src/content/docs/fr/guides/deploy/cloudray.mdx b/src/content/docs/fr/guides/deploy/cloudray.mdx index 76d84b4accfed..40560a2dfae0a 100644 --- a/src/content/docs/fr/guides/deploy/cloudray.mdx +++ b/src/content/docs/fr/guides/deploy/cloudray.mdx @@ -5,6 +5,7 @@ sidebar: label: CloudRay type: deploy service: CloudRay +supports: ['static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/fr/guides/deploy/deno.mdx b/src/content/docs/fr/guides/deploy/deno.mdx index 722f3c44d0838..62a25cd128160 100644 --- a/src/content/docs/fr/guides/deploy/deno.mdx +++ b/src/content/docs/fr/guides/deploy/deno.mdx @@ -4,7 +4,8 @@ description: Comment déployer votre site Astro sur le web en utilisant Deno. sidebar: label: Deno type: deploy -service: Deno +service: Deno Deploy +supports: ['ssr', 'static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/fr/guides/deploy/deployhq.mdx b/src/content/docs/fr/guides/deploy/deployhq.mdx index b8e9b769ff36c..fe10ea4f9127e 100644 --- a/src/content/docs/fr/guides/deploy/deployhq.mdx +++ b/src/content/docs/fr/guides/deploy/deployhq.mdx @@ -5,6 +5,7 @@ sidebar: label: DeployHQ type: deploy service: DeployHQ +supports: ['static'] i18nReady: true --- import ReadMore from '~/components/ReadMore.astro'; diff --git a/src/content/docs/fr/guides/deploy/fleek.mdx b/src/content/docs/fr/guides/deploy/fleek.mdx index cdd3368d90bbb..47165a7b80f6c 100644 --- a/src/content/docs/fr/guides/deploy/fleek.mdx +++ b/src/content/docs/fr/guides/deploy/fleek.mdx @@ -5,6 +5,7 @@ sidebar: label: Fleek type: deploy service: Fleek +supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/fr/guides/deploy/flightcontrol.mdx b/src/content/docs/fr/guides/deploy/flightcontrol.mdx index dc2a06f1ecce8..b4ab15d76b7ce 100644 --- a/src/content/docs/fr/guides/deploy/flightcontrol.mdx +++ b/src/content/docs/fr/guides/deploy/flightcontrol.mdx @@ -4,7 +4,8 @@ description: Comment déployer votre site Astro sur AWS avec Flightcontrol sidebar: label: Flightcontrol type: deploy -service: Flightcontrol +service: AWS via Flightcontrol +supports: ['ssr', 'static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/fr/guides/deploy/flyio.mdx b/src/content/docs/fr/guides/deploy/flyio.mdx index 31b55bbd3f695..40c5fc6bc5c45 100644 --- a/src/content/docs/fr/guides/deploy/flyio.mdx +++ b/src/content/docs/fr/guides/deploy/flyio.mdx @@ -5,6 +5,7 @@ sidebar: label: Fly.io type: deploy service: Fly.io +supports: ['ssr', 'static'] i18nReady: true stub: true --- diff --git a/src/content/docs/fr/guides/deploy/github.mdx b/src/content/docs/fr/guides/deploy/github.mdx index ae2b6def04424..f0805f8cf25c1 100644 --- a/src/content/docs/fr/guides/deploy/github.mdx +++ b/src/content/docs/fr/guides/deploy/github.mdx @@ -5,6 +5,7 @@ sidebar: label: GitHub Pages type: deploy service: GitHub Pages +supports: ['static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/fr/guides/deploy/gitlab.mdx b/src/content/docs/fr/guides/deploy/gitlab.mdx index 0a59fcd7b61e9..e03044cb9b1fd 100644 --- a/src/content/docs/fr/guides/deploy/gitlab.mdx +++ b/src/content/docs/fr/guides/deploy/gitlab.mdx @@ -5,6 +5,7 @@ sidebar: label: GitLab Pages type: deploy service: GitLab Pages +supports: ['static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/fr/guides/deploy/google-cloud.mdx b/src/content/docs/fr/guides/deploy/google-cloud.mdx index 97c7bc47153e2..a3e801ee44855 100644 --- a/src/content/docs/fr/guides/deploy/google-cloud.mdx +++ b/src/content/docs/fr/guides/deploy/google-cloud.mdx @@ -5,6 +5,7 @@ sidebar: label: Google Cloud type: deploy service: Google Cloud +supports: ['ssr', 'static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/fr/guides/deploy/google-firebase.mdx b/src/content/docs/fr/guides/deploy/google-firebase.mdx index 9effc1cc50544..ad6b0807e529b 100644 --- a/src/content/docs/fr/guides/deploy/google-firebase.mdx +++ b/src/content/docs/fr/guides/deploy/google-firebase.mdx @@ -4,7 +4,8 @@ description: Comment déployer votre site Astro sur le web en utilisant l'héber sidebar: label: Google Firebase type: deploy -service: Google Firebase +service: Google Firebase Hosting +supports: ['ssr', 'static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/fr/guides/deploy/heroku.mdx b/src/content/docs/fr/guides/deploy/heroku.mdx index 4498c90acf028..58f5103962266 100644 --- a/src/content/docs/fr/guides/deploy/heroku.mdx +++ b/src/content/docs/fr/guides/deploy/heroku.mdx @@ -5,6 +5,7 @@ sidebar: label: Heroku type: deploy service: Heroku +supports: ['static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/fr/guides/deploy/juno.mdx b/src/content/docs/fr/guides/deploy/juno.mdx index acc725d742c79..e50430c319e45 100644 --- a/src/content/docs/fr/guides/deploy/juno.mdx +++ b/src/content/docs/fr/guides/deploy/juno.mdx @@ -5,6 +5,7 @@ sidebar: label: Juno type: deploy service: Juno +supports: ['static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/fr/guides/deploy/kinsta.mdx b/src/content/docs/fr/guides/deploy/kinsta.mdx index 69f3ed1a2001c..8031c1602dc2c 100644 --- a/src/content/docs/fr/guides/deploy/kinsta.mdx +++ b/src/content/docs/fr/guides/deploy/kinsta.mdx @@ -5,6 +5,7 @@ sidebar: label: Kinsta type: deploy service: Kinsta +supports: ['ssr', 'static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/fr/guides/deploy/microsoft-azure.mdx b/src/content/docs/fr/guides/deploy/microsoft-azure.mdx index 6ff9b77c72967..8cdebb286f60b 100644 --- a/src/content/docs/fr/guides/deploy/microsoft-azure.mdx +++ b/src/content/docs/fr/guides/deploy/microsoft-azure.mdx @@ -5,6 +5,7 @@ sidebar: label: Microsoft Azure type: deploy service: Microsoft Azure +supports: ['static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/fr/guides/deploy/railway.mdx b/src/content/docs/fr/guides/deploy/railway.mdx index 987a9b8603904..ba06ad9d4927c 100644 --- a/src/content/docs/fr/guides/deploy/railway.mdx +++ b/src/content/docs/fr/guides/deploy/railway.mdx @@ -5,6 +5,7 @@ sidebar: label: Railway type: deploy service: Railway +supports: ['ssr', 'static'] i18nReady: true stub: true --- diff --git a/src/content/docs/fr/guides/deploy/render.mdx b/src/content/docs/fr/guides/deploy/render.mdx index 54d82ef895837..bca6fe816ced5 100644 --- a/src/content/docs/fr/guides/deploy/render.mdx +++ b/src/content/docs/fr/guides/deploy/render.mdx @@ -5,6 +5,7 @@ sidebar: label: Render type: deploy service: Render +supports: ['static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/fr/guides/deploy/sst.mdx b/src/content/docs/fr/guides/deploy/sst.mdx index d56c688c42383..7a1452d9178db 100644 --- a/src/content/docs/fr/guides/deploy/sst.mdx +++ b/src/content/docs/fr/guides/deploy/sst.mdx @@ -5,6 +5,7 @@ sidebar: label: SST type: deploy service: AWS via SST +supports: ['ssr', 'static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/fr/guides/deploy/stormkit.mdx b/src/content/docs/fr/guides/deploy/stormkit.mdx index 5e52225ff61d8..3eb712ffac824 100644 --- a/src/content/docs/fr/guides/deploy/stormkit.mdx +++ b/src/content/docs/fr/guides/deploy/stormkit.mdx @@ -5,6 +5,7 @@ sidebar: label: Stormkit type: deploy service: Stormkit +supports: ['static'] i18nReady: true --- import ReadMore from '~/components/ReadMore.astro'; diff --git a/src/content/docs/fr/guides/deploy/surge.mdx b/src/content/docs/fr/guides/deploy/surge.mdx index 96c4a0386681f..0361391939fb1 100644 --- a/src/content/docs/fr/guides/deploy/surge.mdx +++ b/src/content/docs/fr/guides/deploy/surge.mdx @@ -5,6 +5,7 @@ sidebar: label: Surge type: deploy service: Surge +supports: ['static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/fr/guides/deploy/vercel.mdx b/src/content/docs/fr/guides/deploy/vercel.mdx index f415870c19218..4db41946064bb 100644 --- a/src/content/docs/fr/guides/deploy/vercel.mdx +++ b/src/content/docs/fr/guides/deploy/vercel.mdx @@ -5,6 +5,7 @@ sidebar: label: Vercel type: deploy service: Vercel +supports: ['ssr', 'static'] i18nReady: true --- import PackageManagerTabs from '~/components/tabs/PackageManagerTabs.astro'; diff --git a/src/content/docs/fr/guides/deploy/zeabur.mdx b/src/content/docs/fr/guides/deploy/zeabur.mdx index 06cd59e69ccd3..d0d056c399bdc 100644 --- a/src/content/docs/fr/guides/deploy/zeabur.mdx +++ b/src/content/docs/fr/guides/deploy/zeabur.mdx @@ -5,6 +5,7 @@ sidebar: label: Zeabur type: deploy service: Zeabur +supports: ['ssr', 'static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/fr/guides/deploy/zephyr.mdx b/src/content/docs/fr/guides/deploy/zephyr.mdx index 4b2ab3d34a311..a15aba8203a21 100644 --- a/src/content/docs/fr/guides/deploy/zephyr.mdx +++ b/src/content/docs/fr/guides/deploy/zephyr.mdx @@ -5,6 +5,7 @@ sidebar: label: Zephyr Cloud type: deploy service: Zephyr Cloud +supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/fr/guides/deploy/zerops.mdx b/src/content/docs/fr/guides/deploy/zerops.mdx index 235b9ec311529..5d7cf4e767f4f 100644 --- a/src/content/docs/fr/guides/deploy/zerops.mdx +++ b/src/content/docs/fr/guides/deploy/zerops.mdx @@ -5,6 +5,7 @@ sidebar: label: Zerops type: deploy service: Zerops +supports: ['ssr', 'static'] i18nReady: true --- import PackageManagerTabs from '~/components/tabs/PackageManagerTabs.astro' diff --git a/src/content/docs/ja/guides/deploy/render.mdx b/src/content/docs/ja/guides/deploy/render.mdx index e15d3be9388d1..79a501994b800 100644 --- a/src/content/docs/ja/guides/deploy/render.mdx +++ b/src/content/docs/ja/guides/deploy/render.mdx @@ -3,6 +3,7 @@ title: AstroサイトをRenderにデプロイする description: RenderでAstroサイトをデプロイする方法。 type: deploy service: Render +supports: ['static'] sidebar: label: Render i18nReady: true diff --git a/src/content/docs/ko/guides/deploy/aws.mdx b/src/content/docs/ko/guides/deploy/aws.mdx index 20ac472c50957..b903d8893325c 100644 --- a/src/content/docs/ko/guides/deploy/aws.mdx +++ b/src/content/docs/ko/guides/deploy/aws.mdx @@ -5,6 +5,7 @@ sidebar: label: AWS type: deploy service: AWS +supports: ['ssr', 'static'] i18nReady: true --- import ReadMore from '~/components/ReadMore.astro'; diff --git a/src/content/docs/ko/guides/deploy/azion.mdx b/src/content/docs/ko/guides/deploy/azion.mdx index 7b23a0593d5cf..88df0c9eebc86 100644 --- a/src/content/docs/ko/guides/deploy/azion.mdx +++ b/src/content/docs/ko/guides/deploy/azion.mdx @@ -5,6 +5,7 @@ sidebar: label: Azion type: deploy service: Azion +supports: ['ssr', 'static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/buddy.mdx b/src/content/docs/ko/guides/deploy/buddy.mdx index 6234c9d8cdb38..32c8dcca4b941 100644 --- a/src/content/docs/ko/guides/deploy/buddy.mdx +++ b/src/content/docs/ko/guides/deploy/buddy.mdx @@ -5,6 +5,7 @@ sidebar: label: Buddy type: deploy service: Buddy +supports: ['static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/cleavr.mdx b/src/content/docs/ko/guides/deploy/cleavr.mdx index 0ccc7dfe4e417..9edb4c056b43b 100644 --- a/src/content/docs/ko/guides/deploy/cleavr.mdx +++ b/src/content/docs/ko/guides/deploy/cleavr.mdx @@ -5,6 +5,7 @@ sidebar: label: Cleavr type: deploy service: Cleavr +supports: ['ssr', 'static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/clever-cloud.mdx b/src/content/docs/ko/guides/deploy/clever-cloud.mdx index 7b8dfe9e4edc9..16c8d3aa8378c 100644 --- a/src/content/docs/ko/guides/deploy/clever-cloud.mdx +++ b/src/content/docs/ko/guides/deploy/clever-cloud.mdx @@ -5,6 +5,7 @@ sidebar: label: Clever Cloud type: deploy service: Clever Cloud +supports: ['static', 'ssr'] i18nReady: true --- import { Tabs, TabItem, Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/cloudflare.mdx b/src/content/docs/ko/guides/deploy/cloudflare.mdx index 584864f0d4c80..c50b8b6a35976 100644 --- a/src/content/docs/ko/guides/deploy/cloudflare.mdx +++ b/src/content/docs/ko/guides/deploy/cloudflare.mdx @@ -4,7 +4,8 @@ description: Cloudflare를 사용하여 Astro 사이트를 웹에 배포하는 sidebar: label: Cloudflare type: deploy -service: Cloudflare +service: Cloudflare Pages +supports: ['ssr', 'static'] i18nReady: true --- import ReadMore from '~/components/ReadMore.astro'; diff --git a/src/content/docs/ko/guides/deploy/cloudray.mdx b/src/content/docs/ko/guides/deploy/cloudray.mdx index 80bc53eab546f..c0f81f46d6bc9 100644 --- a/src/content/docs/ko/guides/deploy/cloudray.mdx +++ b/src/content/docs/ko/guides/deploy/cloudray.mdx @@ -5,6 +5,7 @@ sidebar: label: CloudRay type: deploy service: CloudRay +supports: ['static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/deno.mdx b/src/content/docs/ko/guides/deploy/deno.mdx index fe4c78ed2d44c..4a2061c9f9d80 100644 --- a/src/content/docs/ko/guides/deploy/deno.mdx +++ b/src/content/docs/ko/guides/deploy/deno.mdx @@ -4,7 +4,8 @@ description: Deno를 사용하여 Astro 사이트를 웹에 배포하는 방법. sidebar: label: Deno type: deploy -service: Deno +service: Deno Deploy +supports: ['ssr', 'static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/deployhq.mdx b/src/content/docs/ko/guides/deploy/deployhq.mdx index b427ff87b11bf..9395688e53568 100644 --- a/src/content/docs/ko/guides/deploy/deployhq.mdx +++ b/src/content/docs/ko/guides/deploy/deployhq.mdx @@ -5,6 +5,7 @@ sidebar: label: DeployHQ type: deploy service: DeployHQ +supports: ['static'] i18nReady: true --- import ReadMore from '~/components/ReadMore.astro'; diff --git a/src/content/docs/ko/guides/deploy/fleek.mdx b/src/content/docs/ko/guides/deploy/fleek.mdx index cd0aa57c09c6a..20d82bc471887 100644 --- a/src/content/docs/ko/guides/deploy/fleek.mdx +++ b/src/content/docs/ko/guides/deploy/fleek.mdx @@ -5,6 +5,7 @@ sidebar: label: Fleek type: deploy service: Fleek +supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/ko/guides/deploy/flightcontrol.mdx b/src/content/docs/ko/guides/deploy/flightcontrol.mdx index 5616de9ceb221..047bc0cd54f57 100644 --- a/src/content/docs/ko/guides/deploy/flightcontrol.mdx +++ b/src/content/docs/ko/guides/deploy/flightcontrol.mdx @@ -4,7 +4,8 @@ description: Flightcontrol을 사용하여 Astro 사이트를 AWS에 배포하 sidebar: label: Flightcontrol type: deploy -service: Flightcontrol +service: AWS via Flightcontrol +supports: ['ssr', 'static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/flyio.mdx b/src/content/docs/ko/guides/deploy/flyio.mdx index cb0355b40df67..aaf70a252b505 100644 --- a/src/content/docs/ko/guides/deploy/flyio.mdx +++ b/src/content/docs/ko/guides/deploy/flyio.mdx @@ -5,6 +5,7 @@ sidebar: label: Fly.io type: deploy service: Fly.io +supports: ['ssr', 'static'] i18nReady: true stub: true --- diff --git a/src/content/docs/ko/guides/deploy/github.mdx b/src/content/docs/ko/guides/deploy/github.mdx index aa13f26e0ec3a..d358e79d87d03 100644 --- a/src/content/docs/ko/guides/deploy/github.mdx +++ b/src/content/docs/ko/guides/deploy/github.mdx @@ -4,7 +4,8 @@ description: Github Pages를 사용하여 Astro 사이트를 웹에 배포하는 sidebar: label: GitHub Pages type: deploy -service: GitHub Pages +service: GitHub Pages +supports: ['static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/gitlab.mdx b/src/content/docs/ko/guides/deploy/gitlab.mdx index dd65bdbb3b412..bb40672d5a3fe 100644 --- a/src/content/docs/ko/guides/deploy/gitlab.mdx +++ b/src/content/docs/ko/guides/deploy/gitlab.mdx @@ -4,7 +4,8 @@ description: GitLab Pages를 사용하여 Astro 사이트를 웹에 배포하는 sidebar: label: GitLab Pages type: deploy -service: GitLab Pages +service: GitLab Pages +supports: ['static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/google-cloud.mdx b/src/content/docs/ko/guides/deploy/google-cloud.mdx index eb1b13e18a9c0..6b7331f44d79a 100644 --- a/src/content/docs/ko/guides/deploy/google-cloud.mdx +++ b/src/content/docs/ko/guides/deploy/google-cloud.mdx @@ -4,7 +4,8 @@ description: Google Cloud를 사용하여 Astro 사이트를 웹에 배포하는 sidebar: label: Google Cloud type: deploy -service: Google Cloud +service: Google Cloud +supports: ['ssr', 'static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/google-firebase.mdx b/src/content/docs/ko/guides/deploy/google-firebase.mdx index 0187d6016bff1..642262ffe217d 100644 --- a/src/content/docs/ko/guides/deploy/google-firebase.mdx +++ b/src/content/docs/ko/guides/deploy/google-firebase.mdx @@ -4,7 +4,8 @@ description: Google의 Firebase Hosting을 사용하여 Astro 사이트를 웹 sidebar: label: Google Firebase type: deploy -service: Google Firebase +service: Google Firebase Hosting +supports: ['ssr', 'static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/heroku.mdx b/src/content/docs/ko/guides/deploy/heroku.mdx index d63d3ad1cfdf3..51c44e73d5de4 100644 --- a/src/content/docs/ko/guides/deploy/heroku.mdx +++ b/src/content/docs/ko/guides/deploy/heroku.mdx @@ -5,6 +5,7 @@ sidebar: label: Heroku type: deploy service: Heroku +supports: ['static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/juno.mdx b/src/content/docs/ko/guides/deploy/juno.mdx index 547369d764618..571ef48a044be 100644 --- a/src/content/docs/ko/guides/deploy/juno.mdx +++ b/src/content/docs/ko/guides/deploy/juno.mdx @@ -5,6 +5,7 @@ sidebar: label: Juno type: deploy service: Juno +supports: ['static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/kinsta.mdx b/src/content/docs/ko/guides/deploy/kinsta.mdx index 27af4c83f04d1..407ed3d318474 100644 --- a/src/content/docs/ko/guides/deploy/kinsta.mdx +++ b/src/content/docs/ko/guides/deploy/kinsta.mdx @@ -5,6 +5,7 @@ sidebar: label: Kinsta type: deploy service: Kinsta +supports: ['ssr', 'static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/microsoft-azure.mdx b/src/content/docs/ko/guides/deploy/microsoft-azure.mdx index 457cc42d00532..29ac3b39e33dd 100644 --- a/src/content/docs/ko/guides/deploy/microsoft-azure.mdx +++ b/src/content/docs/ko/guides/deploy/microsoft-azure.mdx @@ -5,6 +5,7 @@ sidebar: label: Microsoft Azure type: deploy service: Microsoft Azure +supports: ['static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/railway.mdx b/src/content/docs/ko/guides/deploy/railway.mdx index f8bd6fd3bc638..743e06ad25e03 100644 --- a/src/content/docs/ko/guides/deploy/railway.mdx +++ b/src/content/docs/ko/guides/deploy/railway.mdx @@ -5,6 +5,7 @@ sidebar: label: Railway type: deploy service: Railway +supports: ['ssr', 'static'] i18nReady: true stub: true --- diff --git a/src/content/docs/ko/guides/deploy/render.mdx b/src/content/docs/ko/guides/deploy/render.mdx index f2436a669860f..72dcf8e9b531b 100644 --- a/src/content/docs/ko/guides/deploy/render.mdx +++ b/src/content/docs/ko/guides/deploy/render.mdx @@ -5,6 +5,7 @@ sidebar: label: Render type: deploy service: Render +supports: ['static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/sst.mdx b/src/content/docs/ko/guides/deploy/sst.mdx index 2b476dba8a181..4377b2aa16897 100644 --- a/src/content/docs/ko/guides/deploy/sst.mdx +++ b/src/content/docs/ko/guides/deploy/sst.mdx @@ -5,6 +5,7 @@ sidebar: label: SST type: deploy service: AWS via SST +supports: ['ssr', 'static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/stormkit.mdx b/src/content/docs/ko/guides/deploy/stormkit.mdx index 9076cecef2268..68934f29543b4 100644 --- a/src/content/docs/ko/guides/deploy/stormkit.mdx +++ b/src/content/docs/ko/guides/deploy/stormkit.mdx @@ -5,6 +5,7 @@ sidebar: label: Stormkit type: deploy service: Stormkit +supports: ['static'] i18nReady: true --- import ReadMore from '~/components/ReadMore.astro'; diff --git a/src/content/docs/ko/guides/deploy/surge.mdx b/src/content/docs/ko/guides/deploy/surge.mdx index f4cfe93c15503..656e131ba4b10 100644 --- a/src/content/docs/ko/guides/deploy/surge.mdx +++ b/src/content/docs/ko/guides/deploy/surge.mdx @@ -5,6 +5,7 @@ sidebar: label: Surge type: deploy service: Surge +supports: ['static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/vercel.mdx b/src/content/docs/ko/guides/deploy/vercel.mdx index 1574673674bbe..4ebd3125519b7 100644 --- a/src/content/docs/ko/guides/deploy/vercel.mdx +++ b/src/content/docs/ko/guides/deploy/vercel.mdx @@ -5,6 +5,7 @@ sidebar: label: Vercel type: deploy service: Vercel +supports: ['ssr', 'static'] i18nReady: true --- import PackageManagerTabs from '~/components/tabs/PackageManagerTabs.astro'; diff --git a/src/content/docs/ko/guides/deploy/zeabur.mdx b/src/content/docs/ko/guides/deploy/zeabur.mdx index 4c5ba553b0a8a..cab6b3243a933 100644 --- a/src/content/docs/ko/guides/deploy/zeabur.mdx +++ b/src/content/docs/ko/guides/deploy/zeabur.mdx @@ -5,6 +5,7 @@ sidebar: label: Zeabur type: deploy service: Zeabur +supports: ['ssr', 'static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/ko/guides/deploy/zephyr.mdx b/src/content/docs/ko/guides/deploy/zephyr.mdx index ad00b94019aa3..00cdd74b5491f 100644 --- a/src/content/docs/ko/guides/deploy/zephyr.mdx +++ b/src/content/docs/ko/guides/deploy/zephyr.mdx @@ -5,6 +5,7 @@ sidebar: label: Zephyr Cloud type: deploy service: Zephyr Cloud +supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/ko/guides/deploy/zerops.mdx b/src/content/docs/ko/guides/deploy/zerops.mdx index abc3b9caa0204..84cafba5b3c84 100644 --- a/src/content/docs/ko/guides/deploy/zerops.mdx +++ b/src/content/docs/ko/guides/deploy/zerops.mdx @@ -5,6 +5,7 @@ sidebar: label: Zerops type: deploy service: Zerops +supports: ['ssr', 'static'] i18nReady: true --- import PackageManagerTabs from '~/components/tabs/PackageManagerTabs.astro' diff --git a/src/content/docs/pt-br/guides/deploy/azion.mdx b/src/content/docs/pt-br/guides/deploy/azion.mdx index e2d3741b75ba6..4508ffe354d5b 100644 --- a/src/content/docs/pt-br/guides/deploy/azion.mdx +++ b/src/content/docs/pt-br/guides/deploy/azion.mdx @@ -3,6 +3,7 @@ title: Publique seu Site Astro na Azion description: Como publicar seu site Astro na web usando Azion. type: deploy service: Azion +supports: ['ssr', 'static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/pt-br/guides/deploy/fleek.mdx b/src/content/docs/pt-br/guides/deploy/fleek.mdx index fe47f75ea3808..0f249e3c2ee5c 100644 --- a/src/content/docs/pt-br/guides/deploy/fleek.mdx +++ b/src/content/docs/pt-br/guides/deploy/fleek.mdx @@ -5,6 +5,7 @@ sidebar: label: Fleek type: deploy service: Fleek +supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/pt-br/guides/deploy/stormkit.mdx b/src/content/docs/pt-br/guides/deploy/stormkit.mdx index ad1f7103ec880..f435724ba8e9a 100644 --- a/src/content/docs/pt-br/guides/deploy/stormkit.mdx +++ b/src/content/docs/pt-br/guides/deploy/stormkit.mdx @@ -3,6 +3,7 @@ title: Publique seu Site Astro na Stormkit description: Publique seu site Astro com Stormkit type: deploy service: Stormkit +supports: ['static'] i18nReady: true --- import ReadMore from '~/components/ReadMore.astro'; diff --git a/src/content/docs/pt-br/guides/deploy/zeabur.mdx b/src/content/docs/pt-br/guides/deploy/zeabur.mdx index 5088e005cdfc2..f863668234353 100644 --- a/src/content/docs/pt-br/guides/deploy/zeabur.mdx +++ b/src/content/docs/pt-br/guides/deploy/zeabur.mdx @@ -3,6 +3,7 @@ title: Publique seu site Astro na Zeabur description: Como publicar seu site Astro na web com Zeabur. type: deploy service: Zeabur +supports: ['ssr', 'static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/pt-br/guides/deploy/zerops.mdx b/src/content/docs/pt-br/guides/deploy/zerops.mdx index 80819fe1fd9ab..d2836bd77df82 100644 --- a/src/content/docs/pt-br/guides/deploy/zerops.mdx +++ b/src/content/docs/pt-br/guides/deploy/zerops.mdx @@ -3,6 +3,7 @@ title: Publique seu Site Astro na Zerops description: Como publicar seu site Astro na web com Zerops. type: deploy service: Zerops +supports: ['ssr', 'static'] i18nReady: true --- import PackageManagerTabs from '~/components/tabs/PackageManagerTabs.astro' diff --git a/src/content/docs/ru/guides/deploy/github.mdx b/src/content/docs/ru/guides/deploy/github.mdx index 7d890c7f4393a..d6174f2ae2cb2 100644 --- a/src/content/docs/ru/guides/deploy/github.mdx +++ b/src/content/docs/ru/guides/deploy/github.mdx @@ -5,6 +5,7 @@ sidebar: label: GitHub Pages type: deploy service: GitHub Pages +supports: ['static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-cn/guides/deploy/aws.mdx b/src/content/docs/zh-cn/guides/deploy/aws.mdx index c83efab9b0e1f..06def6cf1734f 100644 --- a/src/content/docs/zh-cn/guides/deploy/aws.mdx +++ b/src/content/docs/zh-cn/guides/deploy/aws.mdx @@ -5,6 +5,7 @@ sidebar: label: AWS type: deploy service: AWS +supports: ['ssr', 'static'] i18nReady: true --- import ReadMore from '~/components/ReadMore.astro'; diff --git a/src/content/docs/zh-cn/guides/deploy/azion.mdx b/src/content/docs/zh-cn/guides/deploy/azion.mdx index a0bc887be3bc9..ce53a3ff8c9ad 100644 --- a/src/content/docs/zh-cn/guides/deploy/azion.mdx +++ b/src/content/docs/zh-cn/guides/deploy/azion.mdx @@ -5,6 +5,7 @@ sidebar: label: Azion type: deploy service: Azion +supports: ['ssr', 'static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-cn/guides/deploy/buddy.mdx b/src/content/docs/zh-cn/guides/deploy/buddy.mdx index 6df785bb1cfb9..224918e8f72be 100644 --- a/src/content/docs/zh-cn/guides/deploy/buddy.mdx +++ b/src/content/docs/zh-cn/guides/deploy/buddy.mdx @@ -5,6 +5,7 @@ sidebar: label: Buddy type: deploy service: Buddy +supports: ['static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-cn/guides/deploy/cleavr.mdx b/src/content/docs/zh-cn/guides/deploy/cleavr.mdx index b716d90190074..0558f61bd1198 100644 --- a/src/content/docs/zh-cn/guides/deploy/cleavr.mdx +++ b/src/content/docs/zh-cn/guides/deploy/cleavr.mdx @@ -5,6 +5,7 @@ sidebar: label: Cleavr type: deploy service: Cleavr +supports: ['ssr', 'static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-cn/guides/deploy/clever-cloud.mdx b/src/content/docs/zh-cn/guides/deploy/clever-cloud.mdx index c243cc6c0a2e9..e0c7191e165cd 100644 --- a/src/content/docs/zh-cn/guides/deploy/clever-cloud.mdx +++ b/src/content/docs/zh-cn/guides/deploy/clever-cloud.mdx @@ -5,6 +5,7 @@ sidebar: label: Clever Cloud type: deploy service: Clever Cloud +supports: ['static', 'ssr'] i18nReady: true --- import { Tabs, TabItem, Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-cn/guides/deploy/cloudflare.mdx b/src/content/docs/zh-cn/guides/deploy/cloudflare.mdx index a5beaa23016a1..0113076aecb4e 100644 --- a/src/content/docs/zh-cn/guides/deploy/cloudflare.mdx +++ b/src/content/docs/zh-cn/guides/deploy/cloudflare.mdx @@ -4,7 +4,8 @@ description: 如何使用 Cloudflare 将你的 Astro 网站部署到网络上 sidebar: label: Cloudflare type: deploy -service: Cloudflare +service: Cloudflare Pages +supports: ['ssr', 'static'] i18nReady: true --- import ReadMore from '~/components/ReadMore.astro'; diff --git a/src/content/docs/zh-cn/guides/deploy/cloudray.mdx b/src/content/docs/zh-cn/guides/deploy/cloudray.mdx index 0fa069fe4251b..83f967bf03ff0 100644 --- a/src/content/docs/zh-cn/guides/deploy/cloudray.mdx +++ b/src/content/docs/zh-cn/guides/deploy/cloudray.mdx @@ -5,6 +5,7 @@ sidebar: label: CloudRay type: deploy service: CloudRay +supports: ['static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-cn/guides/deploy/deno.mdx b/src/content/docs/zh-cn/guides/deploy/deno.mdx index 5452c9a942e47..f9b263a8fa10b 100644 --- a/src/content/docs/zh-cn/guides/deploy/deno.mdx +++ b/src/content/docs/zh-cn/guides/deploy/deno.mdx @@ -4,7 +4,8 @@ description: 如何将你的 Astro 站点通过 Deno 部署上线。 sidebar: label: Deno type: deploy -service: Deno +service: Deno Deploy +supports: ['ssr', 'static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-cn/guides/deploy/fleek.mdx b/src/content/docs/zh-cn/guides/deploy/fleek.mdx index 750c1fe443fc6..ce2019d770521 100644 --- a/src/content/docs/zh-cn/guides/deploy/fleek.mdx +++ b/src/content/docs/zh-cn/guides/deploy/fleek.mdx @@ -5,6 +5,7 @@ sidebar: label: Fleek type: deploy service: Fleek +supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/zh-cn/guides/deploy/flightcontrol.mdx b/src/content/docs/zh-cn/guides/deploy/flightcontrol.mdx index aa9907576d6aa..0ac00ba077676 100644 --- a/src/content/docs/zh-cn/guides/deploy/flightcontrol.mdx +++ b/src/content/docs/zh-cn/guides/deploy/flightcontrol.mdx @@ -4,7 +4,8 @@ description: 如何将你的 Astro 网站通过 Flightcontrol 部署到 AWS sidebar: label: Flightcontrol type: deploy -service: Flightcontrol +service: AWS via Flightcontrol +supports: ['ssr', 'static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-cn/guides/deploy/flyio.mdx b/src/content/docs/zh-cn/guides/deploy/flyio.mdx index ebfde3c50da12..96aed6f6a71fb 100644 --- a/src/content/docs/zh-cn/guides/deploy/flyio.mdx +++ b/src/content/docs/zh-cn/guides/deploy/flyio.mdx @@ -5,6 +5,7 @@ sidebar: label: Fly.io type: deploy service: Fly.io +supports: ['ssr', 'static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-cn/guides/deploy/github.mdx b/src/content/docs/zh-cn/guides/deploy/github.mdx index fa7f11667eda6..44a43cd5a6a6c 100644 --- a/src/content/docs/zh-cn/guides/deploy/github.mdx +++ b/src/content/docs/zh-cn/guides/deploy/github.mdx @@ -5,6 +5,7 @@ sidebar: label: GitHub Pages type: deploy service: GitHub Pages +supports: ['static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-cn/guides/deploy/gitlab.mdx b/src/content/docs/zh-cn/guides/deploy/gitlab.mdx index 73fa1c58c1df7..dc16bcc48568a 100644 --- a/src/content/docs/zh-cn/guides/deploy/gitlab.mdx +++ b/src/content/docs/zh-cn/guides/deploy/gitlab.mdx @@ -5,6 +5,7 @@ sidebar: label: GitLab Pages type: deploy service: GitLab Pages +supports: ['static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-cn/guides/deploy/google-cloud.mdx b/src/content/docs/zh-cn/guides/deploy/google-cloud.mdx index f8d523bcf176e..17467a37fa192 100644 --- a/src/content/docs/zh-cn/guides/deploy/google-cloud.mdx +++ b/src/content/docs/zh-cn/guides/deploy/google-cloud.mdx @@ -5,6 +5,7 @@ sidebar: label: Google Cloud type: deploy service: Google Cloud +supports: ['ssr', 'static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-cn/guides/deploy/google-firebase.mdx b/src/content/docs/zh-cn/guides/deploy/google-firebase.mdx index 1940dd34f43be..cec5026a766e5 100644 --- a/src/content/docs/zh-cn/guides/deploy/google-firebase.mdx +++ b/src/content/docs/zh-cn/guides/deploy/google-firebase.mdx @@ -4,7 +4,8 @@ description: 了解如何将你的 Astro 网页部署到 Google Firebase。 sidebar: label: Google Firebase type: deploy -service: Google Firebase +service: Google Firebase Hosting +supports: ['ssr', 'static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-cn/guides/deploy/heroku.mdx b/src/content/docs/zh-cn/guides/deploy/heroku.mdx index cece3f6a52e05..eaeb66a9ced59 100644 --- a/src/content/docs/zh-cn/guides/deploy/heroku.mdx +++ b/src/content/docs/zh-cn/guides/deploy/heroku.mdx @@ -5,6 +5,7 @@ sidebar: label: Heroku type: deploy service: Heroku +supports: ['static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-cn/guides/deploy/kinsta.mdx b/src/content/docs/zh-cn/guides/deploy/kinsta.mdx index 879cb813a58ab..436f6df08786a 100644 --- a/src/content/docs/zh-cn/guides/deploy/kinsta.mdx +++ b/src/content/docs/zh-cn/guides/deploy/kinsta.mdx @@ -5,6 +5,7 @@ sidebar: label: Kinsta type: deploy service: Kinsta +supports: ['ssr', 'static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-cn/guides/deploy/microsoft-azure.mdx b/src/content/docs/zh-cn/guides/deploy/microsoft-azure.mdx index 46031451d9abe..d94a15c4c59e2 100644 --- a/src/content/docs/zh-cn/guides/deploy/microsoft-azure.mdx +++ b/src/content/docs/zh-cn/guides/deploy/microsoft-azure.mdx @@ -5,6 +5,7 @@ sidebar: label: Microsoft Azure type: deploy service: Microsoft Azure +supports: ['static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-cn/guides/deploy/railway.mdx b/src/content/docs/zh-cn/guides/deploy/railway.mdx index 2a1c038b5da71..512829bb2fe81 100644 --- a/src/content/docs/zh-cn/guides/deploy/railway.mdx +++ b/src/content/docs/zh-cn/guides/deploy/railway.mdx @@ -5,6 +5,7 @@ sidebar: label: Railway type: deploy service: Railway +supports: ['ssr', 'static'] i18nReady: true stub: true --- diff --git a/src/content/docs/zh-cn/guides/deploy/render.mdx b/src/content/docs/zh-cn/guides/deploy/render.mdx index ca0912563b890..fdc546e99e625 100644 --- a/src/content/docs/zh-cn/guides/deploy/render.mdx +++ b/src/content/docs/zh-cn/guides/deploy/render.mdx @@ -5,6 +5,7 @@ sidebar: label: Render type: deploy service: Render +supports: ['static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-cn/guides/deploy/sst.mdx b/src/content/docs/zh-cn/guides/deploy/sst.mdx index a868f042266be..b4e0a54da521d 100644 --- a/src/content/docs/zh-cn/guides/deploy/sst.mdx +++ b/src/content/docs/zh-cn/guides/deploy/sst.mdx @@ -5,6 +5,7 @@ sidebar: label: SST type: deploy service: AWS via SST +supports: ['ssr', 'static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-cn/guides/deploy/stormkit.mdx b/src/content/docs/zh-cn/guides/deploy/stormkit.mdx index 267f17666e09b..e8ef2f056f551 100644 --- a/src/content/docs/zh-cn/guides/deploy/stormkit.mdx +++ b/src/content/docs/zh-cn/guides/deploy/stormkit.mdx @@ -5,6 +5,7 @@ sidebar: label: Stormkit type: deploy service: Stormkit +supports: ['static'] i18nReady: true --- import ReadMore from '~/components/ReadMore.astro'; diff --git a/src/content/docs/zh-cn/guides/deploy/surge.mdx b/src/content/docs/zh-cn/guides/deploy/surge.mdx index 3b6e2ea606556..8d6728f55ce3a 100644 --- a/src/content/docs/zh-cn/guides/deploy/surge.mdx +++ b/src/content/docs/zh-cn/guides/deploy/surge.mdx @@ -5,6 +5,7 @@ sidebar: label: Surge type: deploy service: Surge +supports: ['static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-cn/guides/deploy/vercel.mdx b/src/content/docs/zh-cn/guides/deploy/vercel.mdx index 44007a2d6de52..35cb58e7ce048 100644 --- a/src/content/docs/zh-cn/guides/deploy/vercel.mdx +++ b/src/content/docs/zh-cn/guides/deploy/vercel.mdx @@ -4,6 +4,8 @@ description: 如何使用 Vercel 将你的 Astro 网站部署到网络上。 sidebar: label: Vercel service: Vercel +supports: ['ssr', 'static'] +i18nReady: true type: deploy --- import PackageManagerTabs from '~/components/tabs/PackageManagerTabs.astro'; diff --git a/src/content/docs/zh-cn/guides/deploy/zeabur.mdx b/src/content/docs/zh-cn/guides/deploy/zeabur.mdx index 248c6f0d7d867..dadc3db31e8ca 100644 --- a/src/content/docs/zh-cn/guides/deploy/zeabur.mdx +++ b/src/content/docs/zh-cn/guides/deploy/zeabur.mdx @@ -5,6 +5,7 @@ sidebar: label: Zeabur type: deploy service: Zeabur +supports: ['ssr', 'static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; diff --git a/src/content/docs/zh-cn/guides/deploy/zerops.mdx b/src/content/docs/zh-cn/guides/deploy/zerops.mdx index 29055d483e77a..fa149076df315 100644 --- a/src/content/docs/zh-cn/guides/deploy/zerops.mdx +++ b/src/content/docs/zh-cn/guides/deploy/zerops.mdx @@ -5,6 +5,7 @@ sidebar: label: Zerops type: deploy service: Zerops +supports: ['ssr', 'static'] i18nReady: true --- import PackageManagerTabs from '~/components/tabs/PackageManagerTabs.astro' diff --git a/src/content/docs/zh-tw/guides/deploy/github.mdx b/src/content/docs/zh-tw/guides/deploy/github.mdx index f4bd9eeda72f6..efeea8f03661d 100644 --- a/src/content/docs/zh-tw/guides/deploy/github.mdx +++ b/src/content/docs/zh-tw/guides/deploy/github.mdx @@ -5,6 +5,7 @@ sidebar: label: GitHub Pages type: deploy service: GitHub Pages +supports: ['static'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; From 967dac3aa561ff4e6925ab48040000ee528a2bb0 Mon Sep 17 00:00:00 2001 From: sarahrainsberger Date: Wed, 19 Nov 2025 17:35:27 +0000 Subject: [PATCH 15/24] removed default supports value; all files working on their own --- src/content.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content.config.ts b/src/content.config.ts index 59588c7fd4a08..9439d69e005d3 100644 --- a/src/content.config.ts +++ b/src/content.config.ts @@ -24,7 +24,7 @@ export const baseSchema = z.object({ export const deploySchema = baseSchema.extend({ type: z.literal('deploy'), service: z.string(), - supports: z.array(z.enum(['static', 'ssr'])).default(['static']), + supports: z.array(z.enum(['static', 'ssr'])), }); export const backendSchema = baseSchema.extend({ From c5cfc3b52c5d8bf4c5c1ab212f80ad27468175ea Mon Sep 17 00:00:00 2001 From: sarahrainsberger Date: Wed, 19 Nov 2025 17:48:19 +0000 Subject: [PATCH 16/24] completely replace nav component; fix one guide --- src/components/DeployGuidesNav.astro | 107 ++++++++++-------- src/components/DeployGuidesNavAlpha.astro | 84 -------------- .../docs/de/guides/deploy/google-firebase.mdx | 1 + src/content/docs/en/guides/deploy/index.mdx | 4 +- 4 files changed, 62 insertions(+), 134 deletions(-) delete mode 100644 src/components/DeployGuidesNavAlpha.astro diff --git a/src/components/DeployGuidesNav.astro b/src/components/DeployGuidesNav.astro index cd0c0939bcb2c..bc12e826b15c3 100644 --- a/src/components/DeployGuidesNav.astro +++ b/src/components/DeployGuidesNav.astro @@ -1,7 +1,9 @@ --- +import { englishPages } from '~/content'; import { getLanguageFromURL } from '~/util/path-utils'; +import { isDeployEntry } from '~/content.config'; import CardsNav from './NavGrid/CardsNav.astro'; -import type { LogoKey } from '~/data/logos'; +import { isLogoKey } from '~/data/logos'; export interface Props { minimal?: boolean; @@ -10,54 +12,63 @@ export interface Props { const { minimal } = Astro.props as Props; const lang = getLanguageFromURL(Astro.url.pathname); +const enPages = englishPages.filter(isDeployEntry); -interface Service { - title: string; - slug: LogoKey; - supports: ['ssr', 'static'] | ['ssr'] | ['static']; -} +const links = enPages + .sort((a, b) => { + // Sort alphabetically. + return a.data.service.toLowerCase() > b.data.service.toLowerCase() ? 1 : -1; + }) + .map((page) => { + const { service } = page.data; + const pageUrl = '/' + page.id.replace('en/', `${lang}/`) + '/'; + const logo = isLogoKey(page.id.split('/').pop()); + const { supports } = page.data; + const tags = Object.fromEntries(supports.map((s) => [s, Astro.locals.t(`deploy.${s}Tag`)!])) + return { title: service, href: pageUrl, logo, tags }; + }); + +// Previous list of what each host supports, in case we need to double check: + +// Static Only +// { title: 'Buddy', slug: 'buddy', supports: ['static'] }, +// { title: 'CloudRay', slug: 'cloudray', supports: ['static'] }, +// { title: 'DeployHQ', slug: 'deployhq', supports: ['static'] }, +// { title: 'Fleek', slug: 'fleek', supports: ['static'] }, +// { title: 'GitHub Pages', slug: 'github', supports: ['static'] }, +// { title: 'GitLab Pages', slug: 'gitlab', supports: ['static'] }, +// { title: 'Heroku', slug: 'heroku', supports: ['static'] }, +// { title: 'Juno', slug: 'juno', supports: ['static'] }, +// { title: 'Microsoft Azure', slug: 'microsoft-azure', supports: ['static'] }, +// { title: 'Render', slug: 'render', supports: ['static'] }, +// { title: 'Stormkit', slug: 'stormkit', supports: ['static'] }, +// { title: 'Surge', slug: 'surge', supports: ['static'] }, +// { title: 'Zephyr', slug: 'zephyr', supports: ['static'] }, + +//Static and SSR +// { title: 'Netlify', slug: 'netlify', supports: ['ssr', 'static'] }, +// { title: 'Vercel', slug: 'vercel', supports: ['ssr', 'static'] }, +// { title: 'Deno Deploy', slug: 'deno', supports: ['ssr', 'static'] }, +// { title: 'Cloudflare Pages', slug: 'cloudflare', supports: ['ssr', 'static'] }, +// { title: 'AWS', slug: 'aws', supports: ['ssr', 'static'] }, +// { title: 'AWS via Flightcontrol', slug: 'flightcontrol', supports: ['ssr', 'static'] }, +// { title: 'AWS via SST', slug: 'sst', supports: ['ssr', 'static'] }, +// { title: 'Clever Cloud', slug: 'clever-cloud', supports: ['ssr', 'static'] }, +// { title: 'Azion', slug: 'azion', supports: ['ssr', 'static'] }, +// { title: 'Google Cloud', slug: 'google-cloud', supports: ['ssr', 'static'] }, +// { title: 'Google Firebase', slug: 'google-firebase', supports: ['ssr', 'static'] }, +// { title: 'Fly.io', slug: 'flyio', supports: ['ssr', 'static'] }, +// { title: 'Railway', slug: 'railway', supports: ['ssr', 'static'] }, +// { title: 'Cleavr', slug: 'cleavr', supports: ['ssr', 'static'] }, +// { title: 'Kinsta', slug: 'kinsta', supports: ['ssr', 'static'] }, +// { title: 'Zeabur', slug: 'zeabur', supports: ['ssr', 'static'] }, +// { title: 'Zerops', slug: 'zerops', supports: ['ssr', 'static'] }, + +// SSR only +// { title: 'Seenode', slug: 'seenode', supports: ['ssr'] }, -const services: Service[] = [ - { title: 'Netlify', slug: 'netlify', supports: ['ssr', 'static'] }, - { title: 'Vercel', slug: 'vercel', supports: ['ssr', 'static'] }, - { title: 'Deno Deploy', slug: 'deno', supports: ['ssr', 'static'] }, - { title: 'GitHub Pages', slug: 'github', supports: ['static'] }, - { title: 'GitLab Pages', slug: 'gitlab', supports: ['static'] }, - { title: 'Cloudflare Pages', slug: 'cloudflare', supports: ['ssr', 'static'] }, - { title: 'AWS', slug: 'aws', supports: ['ssr', 'static'] }, - { title: 'AWS via Flightcontrol', slug: 'flightcontrol', supports: ['ssr', 'static'] }, - { title: 'AWS via SST', slug: 'sst', supports: ['ssr', 'static'] }, - { title: 'Clever Cloud', slug: 'clever-cloud', supports: ['ssr', 'static'] }, - { title: 'Azion', slug: 'azion', supports: ['ssr', 'static'] }, - { title: 'Google Cloud', slug: 'google-cloud', supports: ['ssr', 'static'] }, - { title: 'Google Firebase', slug: 'google-firebase', supports: ['ssr', 'static'] }, - { title: 'Heroku', slug: 'heroku', supports: ['static'] }, - { title: 'Microsoft Azure', slug: 'microsoft-azure', supports: ['static'] }, - { title: 'Buddy', slug: 'buddy', supports: ['static'] }, - { title: 'DeployHQ', slug: 'deployhq', supports: ['static'] }, - { title: 'Fleek', slug: 'fleek', supports: ['static'] }, - { title: 'Fly.io', slug: 'flyio', supports: ['ssr', 'static'] }, - { title: 'Juno', slug: 'juno', supports: ['static'] }, - { title: 'Railway', slug: 'railway', supports: ['ssr', 'static'] }, - { title: 'Render', slug: 'render', supports: ['static'] }, - { title: 'Stormkit', slug: 'stormkit', supports: ['static'] }, - { title: 'Surge', slug: 'surge', supports: ['static'] }, - { title: 'Cleavr', slug: 'cleavr', supports: ['ssr', 'static'] }, - { title: 'Kinsta', slug: 'kinsta', supports: ['ssr', 'static'] }, - { title: 'Zeabur', slug: 'zeabur', supports: ['ssr', 'static'] }, - { title: 'Zerops', slug: 'zerops', supports: ['ssr', 'static'] }, - { title: 'CloudRay', slug: 'cloudray', supports: ['static'] }, - { title: 'Seenode', slug: 'seenode', supports: ['ssr'] }, - { title: 'Zephyr', slug: 'zephyr', supports: ['static'] }, -]; --- - ({ - title, - href: `/${lang}/guides/deploy/${slug}/`, - logo: slug, - tags: Object.fromEntries(supports.map((s) => [s, Astro.locals.t(`deploy.${s}Tag`)!])), - }))} -/> +
+ +
\ No newline at end of file diff --git a/src/components/DeployGuidesNavAlpha.astro b/src/components/DeployGuidesNavAlpha.astro deleted file mode 100644 index acb38d7ceb9e2..0000000000000 --- a/src/components/DeployGuidesNavAlpha.astro +++ /dev/null @@ -1,84 +0,0 @@ ---- -import { englishPages } from '~/content'; -import { getLanguageFromURL } from '~/util/path-utils'; -import { isDeployEntry } from '~/content.config'; -import CardsNav from './NavGrid/CardsNav.astro'; -import { isLogoKey } from '~/data/logos'; - -export interface Props { - minimal?: boolean; -} - -const { minimal } = Astro.props as Props; - -const lang = getLanguageFromURL(Astro.url.pathname); -const enPages = englishPages.filter(isDeployEntry); - -const links = enPages - .sort((a, b) => { - // Sort alphabetically. - return a.data.service.toLowerCase() > b.data.service.toLowerCase() ? 1 : -1; - }) - .map((page) => { - const { service } = page.data; - const pageUrl = '/' + page.id.replace('en/', `${lang}/`) + '/'; - const logo = isLogoKey(page.id.split('/').pop()); - const { supports } = page.data; - const tags = Object.fromEntries(supports.map((s) => [s, Astro.locals.t(`deploy.${s}Tag`)!])) - return { title: service, href: pageUrl, logo, tags }; - }); - -// interface Service { -// title: string; -// slug: LogoKey; -// supports: ['ssr', 'static'] | ['ssr'] | ['static']; -// } - -// const services: Service[] = [ - - - - -// { title: 'Buddy', slug: 'buddy', supports: ['static'] }, -// { title: 'CloudRay', slug: 'cloudray', supports: ['static'] }, -// { title: 'DeployHQ', slug: 'deployhq', supports: ['static'] }, -// { title: 'Fleek', slug: 'fleek', supports: ['static'] }, -// { title: 'GitHub Pages', slug: 'github', supports: ['static'] }, -// { title: 'GitLab Pages', slug: 'gitlab', supports: ['static'] }, -// { title: 'Heroku', slug: 'heroku', supports: ['static'] }, -// { title: 'Juno', slug: 'juno', supports: ['static'] }, -// { title: 'Microsoft Azure', slug: 'microsoft-azure', supports: ['static'] }, -// { title: 'Render', slug: 'render', supports: ['static'] }, -// { title: 'Stormkit', slug: 'stormkit', supports: ['static'] }, -// { title: 'Surge', slug: 'surge', supports: ['static'] }, -// { title: 'Zephyr', slug: 'zephyr', supports: ['static'] }, - - - -// { title: 'Netlify', slug: 'netlify', supports: ['ssr', 'static'] }, -// { title: 'Vercel', slug: 'vercel', supports: ['ssr', 'static'] }, -// { title: 'Deno Deploy', slug: 'deno', supports: ['ssr', 'static'] }, -// { title: 'Cloudflare Pages', slug: 'cloudflare', supports: ['ssr', 'static'] }, -// { title: 'AWS', slug: 'aws', supports: ['ssr', 'static'] }, -// { title: 'AWS via Flightcontrol', slug: 'flightcontrol', supports: ['ssr', 'static'] }, -// { title: 'AWS via SST', slug: 'sst', supports: ['ssr', 'static'] }, -// { title: 'Clever Cloud', slug: 'clever-cloud', supports: ['ssr', 'static'] }, -// { title: 'Azion', slug: 'azion', supports: ['ssr', 'static'] }, -// { title: 'Google Cloud', slug: 'google-cloud', supports: ['ssr', 'static'] }, -// { title: 'Google Firebase', slug: 'google-firebase', supports: ['ssr', 'static'] }, -// { title: 'Fly.io', slug: 'flyio', supports: ['ssr', 'static'] }, -// { title: 'Railway', slug: 'railway', supports: ['ssr', 'static'] }, -// { title: 'Cleavr', slug: 'cleavr', supports: ['ssr', 'static'] }, -// { title: 'Kinsta', slug: 'kinsta', supports: ['ssr', 'static'] }, -// { title: 'Zeabur', slug: 'zeabur', supports: ['ssr', 'static'] }, -// { title: 'Zerops', slug: 'zerops', supports: ['ssr', 'static'] }, - - -// { title: 'Seenode', slug: 'seenode', supports: ['ssr'] }, -// ]; - ---- - -
- -
\ No newline at end of file diff --git a/src/content/docs/de/guides/deploy/google-firebase.mdx b/src/content/docs/de/guides/deploy/google-firebase.mdx index 159e763b6bde9..2c325aa3d657c 100644 --- a/src/content/docs/de/guides/deploy/google-firebase.mdx +++ b/src/content/docs/de/guides/deploy/google-firebase.mdx @@ -3,6 +3,7 @@ title: Veröffentliche deine Astro-Website auf Google's Firebase Hosting description: Wie du deine Astro-Website auf Firebase-Hosting von Google im Internet veröffentlichst. type: deploy service: Firebase Hosting +supports: ['static', 'ssr'] sidebar: label: Firebase Hosting i18nReady: true diff --git a/src/content/docs/en/guides/deploy/index.mdx b/src/content/docs/en/guides/deploy/index.mdx index 82d09b78bb6d3..7cbb8eab46fa9 100644 --- a/src/content/docs/en/guides/deploy/index.mdx +++ b/src/content/docs/en/guides/deploy/index.mdx @@ -6,7 +6,7 @@ sidebar: i18nReady: true --- -import DeployGuidesNavAlpha from '~/components/DeployGuidesNavAlpha.astro'; +import DeployGuidesNav from '~/components/DeployGuidesNav.astro'; import PackageManagerTabs from '~/components/tabs/PackageManagerTabs.astro'; import { Steps } from '@astrojs/starlight/components' @@ -14,7 +14,7 @@ import { Steps } from '@astrojs/starlight/components' ## Deployment Guides - + ## Quick Deploy Options From f74f42994b53b7e95ac879019164fb40b4e81a75 Mon Sep 17 00:00:00 2001 From: sarahrainsberger Date: Wed, 19 Nov 2025 18:06:03 +0000 Subject: [PATCH 17/24] remove old list of services from component --- src/components/DeployGuidesNav.astro | 41 ---------------------------- 1 file changed, 41 deletions(-) diff --git a/src/components/DeployGuidesNav.astro b/src/components/DeployGuidesNav.astro index bc12e826b15c3..7bd654f67e007 100644 --- a/src/components/DeployGuidesNav.astro +++ b/src/components/DeployGuidesNav.astro @@ -27,48 +27,7 @@ const links = enPages const tags = Object.fromEntries(supports.map((s) => [s, Astro.locals.t(`deploy.${s}Tag`)!])) return { title: service, href: pageUrl, logo, tags }; }); - -// Previous list of what each host supports, in case we need to double check: - -// Static Only -// { title: 'Buddy', slug: 'buddy', supports: ['static'] }, -// { title: 'CloudRay', slug: 'cloudray', supports: ['static'] }, -// { title: 'DeployHQ', slug: 'deployhq', supports: ['static'] }, -// { title: 'Fleek', slug: 'fleek', supports: ['static'] }, -// { title: 'GitHub Pages', slug: 'github', supports: ['static'] }, -// { title: 'GitLab Pages', slug: 'gitlab', supports: ['static'] }, -// { title: 'Heroku', slug: 'heroku', supports: ['static'] }, -// { title: 'Juno', slug: 'juno', supports: ['static'] }, -// { title: 'Microsoft Azure', slug: 'microsoft-azure', supports: ['static'] }, -// { title: 'Render', slug: 'render', supports: ['static'] }, -// { title: 'Stormkit', slug: 'stormkit', supports: ['static'] }, -// { title: 'Surge', slug: 'surge', supports: ['static'] }, -// { title: 'Zephyr', slug: 'zephyr', supports: ['static'] }, - -//Static and SSR -// { title: 'Netlify', slug: 'netlify', supports: ['ssr', 'static'] }, -// { title: 'Vercel', slug: 'vercel', supports: ['ssr', 'static'] }, -// { title: 'Deno Deploy', slug: 'deno', supports: ['ssr', 'static'] }, -// { title: 'Cloudflare Pages', slug: 'cloudflare', supports: ['ssr', 'static'] }, -// { title: 'AWS', slug: 'aws', supports: ['ssr', 'static'] }, -// { title: 'AWS via Flightcontrol', slug: 'flightcontrol', supports: ['ssr', 'static'] }, -// { title: 'AWS via SST', slug: 'sst', supports: ['ssr', 'static'] }, -// { title: 'Clever Cloud', slug: 'clever-cloud', supports: ['ssr', 'static'] }, -// { title: 'Azion', slug: 'azion', supports: ['ssr', 'static'] }, -// { title: 'Google Cloud', slug: 'google-cloud', supports: ['ssr', 'static'] }, -// { title: 'Google Firebase', slug: 'google-firebase', supports: ['ssr', 'static'] }, -// { title: 'Fly.io', slug: 'flyio', supports: ['ssr', 'static'] }, -// { title: 'Railway', slug: 'railway', supports: ['ssr', 'static'] }, -// { title: 'Cleavr', slug: 'cleavr', supports: ['ssr', 'static'] }, -// { title: 'Kinsta', slug: 'kinsta', supports: ['ssr', 'static'] }, -// { title: 'Zeabur', slug: 'zeabur', supports: ['ssr', 'static'] }, -// { title: 'Zerops', slug: 'zerops', supports: ['ssr', 'static'] }, - -// SSR only -// { title: 'Seenode', slug: 'seenode', supports: ['ssr'] }, - --- -
\ No newline at end of file From 90f35bb0e2393eeaae1f11b94e0d6595a410eb08 Mon Sep 17 00:00:00 2001 From: Sarah Rainsberger <5098874+sarah11918@users.noreply.github.com> Date: Thu, 20 Nov 2025 09:36:16 -0400 Subject: [PATCH 18/24] consistent not Google Firebase not hosting Co-authored-by: HiDeoo <494699+HiDeoo@users.noreply.github.com> --- src/content/docs/de/guides/deploy/google-firebase.mdx | 2 +- src/content/docs/en/guides/deploy/google-firebase.mdx | 2 +- src/content/docs/fr/guides/deploy/google-firebase.mdx | 2 +- src/content/docs/ko/guides/deploy/google-firebase.mdx | 2 +- src/content/docs/zh-cn/guides/deploy/google-firebase.mdx | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/content/docs/de/guides/deploy/google-firebase.mdx b/src/content/docs/de/guides/deploy/google-firebase.mdx index 2c325aa3d657c..950c42ebd4d1d 100644 --- a/src/content/docs/de/guides/deploy/google-firebase.mdx +++ b/src/content/docs/de/guides/deploy/google-firebase.mdx @@ -2,7 +2,7 @@ title: Veröffentliche deine Astro-Website auf Google's Firebase Hosting description: Wie du deine Astro-Website auf Firebase-Hosting von Google im Internet veröffentlichst. type: deploy -service: Firebase Hosting +service: Firebase supports: ['static', 'ssr'] sidebar: label: Firebase Hosting diff --git a/src/content/docs/en/guides/deploy/google-firebase.mdx b/src/content/docs/en/guides/deploy/google-firebase.mdx index 4e68473c770ec..48d0a16461b1c 100644 --- a/src/content/docs/en/guides/deploy/google-firebase.mdx +++ b/src/content/docs/en/guides/deploy/google-firebase.mdx @@ -4,7 +4,7 @@ description: How to deploy your Astro site to the web using Google’s Firebase sidebar: label: Google Firebase type: deploy -service: Google Firebase Hosting +service: Firebase supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/fr/guides/deploy/google-firebase.mdx b/src/content/docs/fr/guides/deploy/google-firebase.mdx index ad6b0807e529b..bf280d72d8216 100644 --- a/src/content/docs/fr/guides/deploy/google-firebase.mdx +++ b/src/content/docs/fr/guides/deploy/google-firebase.mdx @@ -4,7 +4,7 @@ description: Comment déployer votre site Astro sur le web en utilisant l'héber sidebar: label: Google Firebase type: deploy -service: Google Firebase Hosting +service: Firebase supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/ko/guides/deploy/google-firebase.mdx b/src/content/docs/ko/guides/deploy/google-firebase.mdx index 642262ffe217d..a9d6942a2b47f 100644 --- a/src/content/docs/ko/guides/deploy/google-firebase.mdx +++ b/src/content/docs/ko/guides/deploy/google-firebase.mdx @@ -4,7 +4,7 @@ description: Google의 Firebase Hosting을 사용하여 Astro 사이트를 웹 sidebar: label: Google Firebase type: deploy -service: Google Firebase Hosting +service: Firebase supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/zh-cn/guides/deploy/google-firebase.mdx b/src/content/docs/zh-cn/guides/deploy/google-firebase.mdx index cec5026a766e5..07702fdabe692 100644 --- a/src/content/docs/zh-cn/guides/deploy/google-firebase.mdx +++ b/src/content/docs/zh-cn/guides/deploy/google-firebase.mdx @@ -4,7 +4,7 @@ description: 了解如何将你的 Astro 网页部署到 Google Firebase。 sidebar: label: Google Firebase type: deploy -service: Google Firebase Hosting +service: Firebase supports: ['ssr', 'static'] i18nReady: true --- From 24eaeefec68758889f48edf805c41c83a8d39f9e Mon Sep 17 00:00:00 2001 From: Sarah Rainsberger <5098874+sarah11918@users.noreply.github.com> Date: Thu, 20 Nov 2025 09:51:34 -0400 Subject: [PATCH 19/24] rename Deno Deploy label Co-authored-by: ainurx_78 <34947605+ainurx@users.noreply.github.com> --- src/content/docs/de/guides/deploy/deno.mdx | 2 +- src/content/docs/en/guides/deploy/deno.mdx | 2 +- src/content/docs/fr/guides/deploy/deno.mdx | 2 +- src/content/docs/ko/guides/deploy/deno.mdx | 2 +- src/content/docs/zh-cn/guides/deploy/deno.mdx | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/content/docs/de/guides/deploy/deno.mdx b/src/content/docs/de/guides/deploy/deno.mdx index ff2904127c273..fade000fc0cbe 100644 --- a/src/content/docs/de/guides/deploy/deno.mdx +++ b/src/content/docs/de/guides/deploy/deno.mdx @@ -2,7 +2,7 @@ title: Veröffentliche deine Astro-Website auf Deno description: Wie du deine Astro-Webseite mit Deno im Internet veröffentlichst. sidebar: - label: Deno + label: Deno Deploy type: deploy service: Deno Deploy supports: ['ssr', 'static'] diff --git a/src/content/docs/en/guides/deploy/deno.mdx b/src/content/docs/en/guides/deploy/deno.mdx index 0ac183dd42a0b..af949b69e7644 100644 --- a/src/content/docs/en/guides/deploy/deno.mdx +++ b/src/content/docs/en/guides/deploy/deno.mdx @@ -2,7 +2,7 @@ title: Deploy your Astro Site with Deno description: How to deploy your Astro site to the web using Deno. sidebar: - label: Deno + label: Deno Deploy type: deploy service: Deno Deploy supports: ['ssr', 'static'] diff --git a/src/content/docs/fr/guides/deploy/deno.mdx b/src/content/docs/fr/guides/deploy/deno.mdx index 62a25cd128160..47daba09e24a4 100644 --- a/src/content/docs/fr/guides/deploy/deno.mdx +++ b/src/content/docs/fr/guides/deploy/deno.mdx @@ -2,7 +2,7 @@ title: Déployer votre site Astro avec Deno description: Comment déployer votre site Astro sur le web en utilisant Deno. sidebar: - label: Deno + label: Deno Deploy type: deploy service: Deno Deploy supports: ['ssr', 'static'] diff --git a/src/content/docs/ko/guides/deploy/deno.mdx b/src/content/docs/ko/guides/deploy/deno.mdx index 4a2061c9f9d80..be59659f995c8 100644 --- a/src/content/docs/ko/guides/deploy/deno.mdx +++ b/src/content/docs/ko/guides/deploy/deno.mdx @@ -2,7 +2,7 @@ title: Astro 사이트를 Deno에 배포 description: Deno를 사용하여 Astro 사이트를 웹에 배포하는 방법. sidebar: - label: Deno + label: Deno Deploy type: deploy service: Deno Deploy supports: ['ssr', 'static'] diff --git a/src/content/docs/zh-cn/guides/deploy/deno.mdx b/src/content/docs/zh-cn/guides/deploy/deno.mdx index f9b263a8fa10b..bffffa06d309a 100644 --- a/src/content/docs/zh-cn/guides/deploy/deno.mdx +++ b/src/content/docs/zh-cn/guides/deploy/deno.mdx @@ -2,7 +2,7 @@ title: 使用 Deno 部署你的 Astro 站点 description: 如何将你的 Astro 站点通过 Deno 部署上线。 sidebar: - label: Deno + label: Deno Deploy type: deploy service: Deno Deploy supports: ['ssr', 'static'] From 7976a7da40da269bef13d8a9e7581f47246c6e45 Mon Sep 17 00:00:00 2001 From: HiDeoo <494699+HiDeoo@users.noreply.github.com> Date: Thu, 20 Nov 2025 15:47:09 +0100 Subject: [PATCH 20/24] feat: deploy logo --- src/components/DeployGuidesNav.astro | 19 ++++++++----------- src/content.config.ts | 3 ++- ...tcontrol.mdx => aws-via-flightcontrol.mdx} | 4 ++-- src/content/docs/de/guides/deploy/buddy.mdx | 2 +- src/content/docs/de/guides/deploy/cleavr.mdx | 2 +- src/content/docs/de/guides/deploy/deno.mdx | 2 +- src/content/docs/de/guides/deploy/gitlab.mdx | 2 +- .../docs/de/guides/deploy/google-cloud.mdx | 2 +- .../docs/de/guides/deploy/google-firebase.mdx | 2 +- src/content/docs/de/guides/deploy/heroku.mdx | 2 +- ...tcontrol.mdx => aws-via-flightcontrol.mdx} | 4 ++-- .../deploy/{sst.mdx => aws-via-sst.mdx} | 4 ++-- src/content/docs/en/guides/deploy/aws.mdx | 2 +- src/content/docs/en/guides/deploy/azion.mdx | 2 +- src/content/docs/en/guides/deploy/buddy.mdx | 2 +- src/content/docs/en/guides/deploy/cleavr.mdx | 2 +- .../docs/en/guides/deploy/clever-cloud.mdx | 2 +- .../docs/en/guides/deploy/cloudflare.mdx | 2 +- .../docs/en/guides/deploy/cloudray.mdx | 2 +- src/content/docs/en/guides/deploy/deno.mdx | 2 +- .../docs/en/guides/deploy/deployhq.mdx | 2 +- src/content/docs/en/guides/deploy/fleek.mdx | 2 +- src/content/docs/en/guides/deploy/flyio.mdx | 2 +- src/content/docs/en/guides/deploy/github.mdx | 2 +- src/content/docs/en/guides/deploy/gitlab.mdx | 2 +- .../docs/en/guides/deploy/google-cloud.mdx | 2 +- .../docs/en/guides/deploy/google-firebase.mdx | 2 +- src/content/docs/en/guides/deploy/heroku.mdx | 2 +- src/content/docs/en/guides/deploy/juno.mdx | 2 +- src/content/docs/en/guides/deploy/kinsta.mdx | 2 +- .../docs/en/guides/deploy/microsoft-azure.mdx | 2 +- src/content/docs/en/guides/deploy/netlify.mdx | 2 +- src/content/docs/en/guides/deploy/railway.mdx | 2 +- src/content/docs/en/guides/deploy/render.mdx | 2 +- src/content/docs/en/guides/deploy/seenode.mdx | 4 ++-- .../docs/en/guides/deploy/stormkit.mdx | 2 +- src/content/docs/en/guides/deploy/surge.mdx | 2 +- src/content/docs/en/guides/deploy/vercel.mdx | 2 +- src/content/docs/en/guides/deploy/zeabur.mdx | 2 +- src/content/docs/en/guides/deploy/zephyr.mdx | 2 +- src/content/docs/en/guides/deploy/zerops.mdx | 2 +- src/content/docs/es/guides/deploy/azion.mdx | 2 +- .../docs/es/guides/deploy/clever-cloud.mdx | 2 +- .../docs/es/guides/deploy/cloudray.mdx | 2 +- src/content/docs/es/guides/deploy/fleek.mdx | 2 +- src/content/docs/es/guides/deploy/github.mdx | 2 +- src/content/docs/es/guides/deploy/railway.mdx | 2 +- ...tcontrol.mdx => aws-via-flightcontrol.mdx} | 4 ++-- .../deploy/{sst.mdx => aws-via-sst.mdx} | 4 ++-- src/content/docs/fr/guides/deploy/aws.mdx | 2 +- src/content/docs/fr/guides/deploy/azion.mdx | 2 +- src/content/docs/fr/guides/deploy/buddy.mdx | 2 +- src/content/docs/fr/guides/deploy/cleavr.mdx | 2 +- .../docs/fr/guides/deploy/clever-cloud.mdx | 2 +- .../docs/fr/guides/deploy/cloudflare.mdx | 2 +- .../docs/fr/guides/deploy/cloudray.mdx | 2 +- src/content/docs/fr/guides/deploy/deno.mdx | 2 +- .../docs/fr/guides/deploy/deployhq.mdx | 2 +- src/content/docs/fr/guides/deploy/fleek.mdx | 2 +- src/content/docs/fr/guides/deploy/flyio.mdx | 2 +- src/content/docs/fr/guides/deploy/github.mdx | 2 +- src/content/docs/fr/guides/deploy/gitlab.mdx | 2 +- .../docs/fr/guides/deploy/google-cloud.mdx | 2 +- .../docs/fr/guides/deploy/google-firebase.mdx | 2 +- src/content/docs/fr/guides/deploy/heroku.mdx | 2 +- src/content/docs/fr/guides/deploy/juno.mdx | 2 +- src/content/docs/fr/guides/deploy/kinsta.mdx | 2 +- .../docs/fr/guides/deploy/microsoft-azure.mdx | 2 +- src/content/docs/fr/guides/deploy/netlify.mdx | 2 +- src/content/docs/fr/guides/deploy/railway.mdx | 2 +- src/content/docs/fr/guides/deploy/render.mdx | 2 +- src/content/docs/fr/guides/deploy/seenode.mdx | 2 +- .../docs/fr/guides/deploy/stormkit.mdx | 2 +- src/content/docs/fr/guides/deploy/surge.mdx | 2 +- src/content/docs/fr/guides/deploy/vercel.mdx | 2 +- src/content/docs/fr/guides/deploy/zeabur.mdx | 2 +- src/content/docs/fr/guides/deploy/zephyr.mdx | 2 +- src/content/docs/fr/guides/deploy/zerops.mdx | 2 +- src/content/docs/ja/guides/deploy/render.mdx | 2 +- ...tcontrol.mdx => aws-via-flightcontrol.mdx} | 4 ++-- .../deploy/{sst.mdx => aws-via-sst.mdx} | 4 ++-- src/content/docs/ko/guides/deploy/aws.mdx | 2 +- src/content/docs/ko/guides/deploy/azion.mdx | 2 +- src/content/docs/ko/guides/deploy/buddy.mdx | 2 +- src/content/docs/ko/guides/deploy/cleavr.mdx | 2 +- .../docs/ko/guides/deploy/clever-cloud.mdx | 2 +- .../docs/ko/guides/deploy/cloudflare.mdx | 2 +- .../docs/ko/guides/deploy/cloudray.mdx | 2 +- src/content/docs/ko/guides/deploy/deno.mdx | 2 +- .../docs/ko/guides/deploy/deployhq.mdx | 2 +- src/content/docs/ko/guides/deploy/fleek.mdx | 2 +- src/content/docs/ko/guides/deploy/flyio.mdx | 2 +- src/content/docs/ko/guides/deploy/github.mdx | 2 +- src/content/docs/ko/guides/deploy/gitlab.mdx | 2 +- .../docs/ko/guides/deploy/google-cloud.mdx | 2 +- .../docs/ko/guides/deploy/google-firebase.mdx | 2 +- src/content/docs/ko/guides/deploy/heroku.mdx | 2 +- src/content/docs/ko/guides/deploy/juno.mdx | 2 +- src/content/docs/ko/guides/deploy/kinsta.mdx | 2 +- .../docs/ko/guides/deploy/microsoft-azure.mdx | 2 +- src/content/docs/ko/guides/deploy/netlify.mdx | 2 +- src/content/docs/ko/guides/deploy/railway.mdx | 2 +- src/content/docs/ko/guides/deploy/render.mdx | 2 +- src/content/docs/ko/guides/deploy/seenode.mdx | 2 +- .../docs/ko/guides/deploy/stormkit.mdx | 2 +- src/content/docs/ko/guides/deploy/surge.mdx | 2 +- src/content/docs/ko/guides/deploy/vercel.mdx | 2 +- src/content/docs/ko/guides/deploy/zeabur.mdx | 2 +- src/content/docs/ko/guides/deploy/zephyr.mdx | 2 +- src/content/docs/ko/guides/deploy/zerops.mdx | 2 +- .../docs/pt-br/guides/deploy/azion.mdx | 2 +- .../docs/pt-br/guides/deploy/fleek.mdx | 2 +- .../docs/pt-br/guides/deploy/stormkit.mdx | 2 +- .../docs/pt-br/guides/deploy/zeabur.mdx | 2 +- .../docs/pt-br/guides/deploy/zerops.mdx | 4 ++-- src/content/docs/ru/guides/deploy/github.mdx | 2 +- ...tcontrol.mdx => aws-via-flightcontrol.mdx} | 4 ++-- .../deploy/{sst.mdx => aws-via-sst.mdx} | 4 ++-- src/content/docs/zh-cn/guides/deploy/aws.mdx | 2 +- .../docs/zh-cn/guides/deploy/azion.mdx | 2 +- .../docs/zh-cn/guides/deploy/buddy.mdx | 2 +- .../docs/zh-cn/guides/deploy/cleavr.mdx | 2 +- .../docs/zh-cn/guides/deploy/clever-cloud.mdx | 2 +- .../docs/zh-cn/guides/deploy/cloudflare.mdx | 2 +- .../docs/zh-cn/guides/deploy/cloudray.mdx | 4 ++-- src/content/docs/zh-cn/guides/deploy/deno.mdx | 2 +- .../docs/zh-cn/guides/deploy/fleek.mdx | 2 +- .../docs/zh-cn/guides/deploy/flyio.mdx | 2 +- .../docs/zh-cn/guides/deploy/github.mdx | 2 +- .../docs/zh-cn/guides/deploy/gitlab.mdx | 2 +- .../docs/zh-cn/guides/deploy/google-cloud.mdx | 2 +- .../zh-cn/guides/deploy/google-firebase.mdx | 2 +- .../docs/zh-cn/guides/deploy/heroku.mdx | 2 +- .../docs/zh-cn/guides/deploy/kinsta.mdx | 2 +- .../zh-cn/guides/deploy/microsoft-azure.mdx | 2 +- .../docs/zh-cn/guides/deploy/netlify.mdx | 2 +- .../docs/zh-cn/guides/deploy/railway.mdx | 4 ++-- .../docs/zh-cn/guides/deploy/render.mdx | 2 +- .../docs/zh-cn/guides/deploy/stormkit.mdx | 2 +- .../docs/zh-cn/guides/deploy/surge.mdx | 2 +- .../docs/zh-cn/guides/deploy/vercel.mdx | 2 +- .../docs/zh-cn/guides/deploy/zeabur.mdx | 2 +- .../docs/zh-cn/guides/deploy/zerops.mdx | 2 +- .../docs/zh-tw/guides/deploy/github.mdx | 2 +- src/data/logos.ts | 2 +- 145 files changed, 166 insertions(+), 168 deletions(-) rename src/content/docs/de/guides/deploy/{flightcontrol.mdx => aws-via-flightcontrol.mdx} (97%) rename src/content/docs/en/guides/deploy/{flightcontrol.mdx => aws-via-flightcontrol.mdx} (96%) rename src/content/docs/en/guides/deploy/{sst.mdx => aws-via-sst.mdx} (97%) rename src/content/docs/fr/guides/deploy/{flightcontrol.mdx => aws-via-flightcontrol.mdx} (97%) rename src/content/docs/fr/guides/deploy/{sst.mdx => aws-via-sst.mdx} (98%) rename src/content/docs/ko/guides/deploy/{flightcontrol.mdx => aws-via-flightcontrol.mdx} (96%) rename src/content/docs/ko/guides/deploy/{sst.mdx => aws-via-sst.mdx} (98%) rename src/content/docs/zh-cn/guides/deploy/{flightcontrol.mdx => aws-via-flightcontrol.mdx} (96%) rename src/content/docs/zh-cn/guides/deploy/{sst.mdx => aws-via-sst.mdx} (97%) diff --git a/src/components/DeployGuidesNav.astro b/src/components/DeployGuidesNav.astro index 7bd654f67e007..c58c70675e9bf 100644 --- a/src/components/DeployGuidesNav.astro +++ b/src/components/DeployGuidesNav.astro @@ -3,7 +3,6 @@ import { englishPages } from '~/content'; import { getLanguageFromURL } from '~/util/path-utils'; import { isDeployEntry } from '~/content.config'; import CardsNav from './NavGrid/CardsNav.astro'; -import { isLogoKey } from '~/data/logos'; export interface Props { minimal?: boolean; @@ -15,19 +14,17 @@ const lang = getLanguageFromURL(Astro.url.pathname); const enPages = englishPages.filter(isDeployEntry); const links = enPages - .sort((a, b) => { - // Sort alphabetically. - return a.data.service.toLowerCase() > b.data.service.toLowerCase() ? 1 : -1; - }) + // Sort alphabetically. + .sort((a, b) => (a.id > b.id ? 1 : -1)) .map((page) => { - const { service } = page.data; + const { logo, sidebar, supports } = page.data; + if (!sidebar.label) throw new Error('Deploy guides must always include a sidebar label.'); const pageUrl = '/' + page.id.replace('en/', `${lang}/`) + '/'; - const logo = isLogoKey(page.id.split('/').pop()); - const { supports } = page.data; - const tags = Object.fromEntries(supports.map((s) => [s, Astro.locals.t(`deploy.${s}Tag`)!])) - return { title: service, href: pageUrl, logo, tags }; + const tags = Object.fromEntries(supports.map((s) => [s, Astro.locals.t(`deploy.${s}Tag`)!])); + return { title: sidebar.label, href: pageUrl, logo, tags }; }); --- +
-
\ No newline at end of file + diff --git a/src/content.config.ts b/src/content.config.ts index 9439d69e005d3..6f836492b1c13 100644 --- a/src/content.config.ts +++ b/src/content.config.ts @@ -3,6 +3,7 @@ import { docsSchema, i18nSchema } from '@astrojs/starlight/schema'; import { defineCollection, z, type CollectionEntry } from 'astro:content'; import { file } from 'astro/loaders'; import { AstroDocsI18nSchema } from './content/i18n-schema'; +import { logoKeys } from './data/logos'; export const baseSchema = z.object({ type: z.literal('base').optional().default('base'), @@ -23,7 +24,7 @@ export const baseSchema = z.object({ export const deploySchema = baseSchema.extend({ type: z.literal('deploy'), - service: z.string(), + logo: z.enum(logoKeys), supports: z.array(z.enum(['static', 'ssr'])), }); diff --git a/src/content/docs/de/guides/deploy/flightcontrol.mdx b/src/content/docs/de/guides/deploy/aws-via-flightcontrol.mdx similarity index 97% rename from src/content/docs/de/guides/deploy/flightcontrol.mdx rename to src/content/docs/de/guides/deploy/aws-via-flightcontrol.mdx index a0905f18485d9..34894e384ba8d 100644 --- a/src/content/docs/de/guides/deploy/flightcontrol.mdx +++ b/src/content/docs/de/guides/deploy/aws-via-flightcontrol.mdx @@ -2,9 +2,9 @@ title: Veröffentliche deine Astro-Website mit Flightcontrol auf AWS description: Wie du deine Astro-Website mit Flightcontrol auf AWS veröffentlichst sidebar: - label: Flightcontrol + label: AWS via Flightcontrol type: deploy -service: AWS via Flightcontrol +logo: flightcontrol supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/de/guides/deploy/buddy.mdx b/src/content/docs/de/guides/deploy/buddy.mdx index 5984ed151346b..5597e67a2c408 100644 --- a/src/content/docs/de/guides/deploy/buddy.mdx +++ b/src/content/docs/de/guides/deploy/buddy.mdx @@ -4,7 +4,7 @@ description: Wie du deine Astro-Website mit Buddy im Internet veröffentlichst. sidebar: label: Buddy type: deploy -service: Buddy +logo: buddy supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/de/guides/deploy/cleavr.mdx b/src/content/docs/de/guides/deploy/cleavr.mdx index 01cca682bd6a9..ff8072594fe92 100644 --- a/src/content/docs/de/guides/deploy/cleavr.mdx +++ b/src/content/docs/de/guides/deploy/cleavr.mdx @@ -4,7 +4,7 @@ description: Wie du deine Astro-Website mit Cleavr auf deinem VPS-Server bereits sidebar: label: Cleavr type: deploy -service: Cleavr +logo: cleavr supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/de/guides/deploy/deno.mdx b/src/content/docs/de/guides/deploy/deno.mdx index fade000fc0cbe..df5a7603a87a2 100644 --- a/src/content/docs/de/guides/deploy/deno.mdx +++ b/src/content/docs/de/guides/deploy/deno.mdx @@ -4,7 +4,7 @@ description: Wie du deine Astro-Webseite mit Deno im Internet veröffentlichst. sidebar: label: Deno Deploy type: deploy -service: Deno Deploy +logo: deno supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/de/guides/deploy/gitlab.mdx b/src/content/docs/de/guides/deploy/gitlab.mdx index 5444ff075677c..5c5aa1aed666d 100644 --- a/src/content/docs/de/guides/deploy/gitlab.mdx +++ b/src/content/docs/de/guides/deploy/gitlab.mdx @@ -4,7 +4,7 @@ description: Anleitung zur Veröffentlichung deiner Astro-Website mittels GitLab sidebar: label: GitLab Pages type: deploy -service: GitLab Pages +logo: gitlab supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/de/guides/deploy/google-cloud.mdx b/src/content/docs/de/guides/deploy/google-cloud.mdx index 24de914d45ed4..93547025d2a46 100644 --- a/src/content/docs/de/guides/deploy/google-cloud.mdx +++ b/src/content/docs/de/guides/deploy/google-cloud.mdx @@ -4,7 +4,7 @@ description: Wie du deine Astro-Website auf Google Cloud im Internet veröffentl sidebar: label: Google Cloud type: deploy -service: Google Cloud +logo: google-cloud supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/de/guides/deploy/google-firebase.mdx b/src/content/docs/de/guides/deploy/google-firebase.mdx index 950c42ebd4d1d..95f253c0b80bf 100644 --- a/src/content/docs/de/guides/deploy/google-firebase.mdx +++ b/src/content/docs/de/guides/deploy/google-firebase.mdx @@ -2,7 +2,7 @@ title: Veröffentliche deine Astro-Website auf Google's Firebase Hosting description: Wie du deine Astro-Website auf Firebase-Hosting von Google im Internet veröffentlichst. type: deploy -service: Firebase +logo: google-firebase supports: ['static', 'ssr'] sidebar: label: Firebase Hosting diff --git a/src/content/docs/de/guides/deploy/heroku.mdx b/src/content/docs/de/guides/deploy/heroku.mdx index 0f68f3b6458b6..7ee78b3f5f073 100644 --- a/src/content/docs/de/guides/deploy/heroku.mdx +++ b/src/content/docs/de/guides/deploy/heroku.mdx @@ -4,7 +4,7 @@ description: Wie du deine Astro-Website auf Heroku im Internet veröffentlichst. sidebar: label: Heroku type: deploy -service: Heroku +logo: heroku supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/en/guides/deploy/flightcontrol.mdx b/src/content/docs/en/guides/deploy/aws-via-flightcontrol.mdx similarity index 96% rename from src/content/docs/en/guides/deploy/flightcontrol.mdx rename to src/content/docs/en/guides/deploy/aws-via-flightcontrol.mdx index 44aec8f44a2a9..b1378aff72be2 100644 --- a/src/content/docs/en/guides/deploy/flightcontrol.mdx +++ b/src/content/docs/en/guides/deploy/aws-via-flightcontrol.mdx @@ -2,9 +2,9 @@ title: Deploy your Astro Site to AWS with Flightcontrol description: How to deploy your Astro site to AWS with Flightcontrol sidebar: - label: Flightcontrol + label: AWS via Flightcontrol type: deploy -service: AWS via Flightcontrol +logo: flightcontrol supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/en/guides/deploy/sst.mdx b/src/content/docs/en/guides/deploy/aws-via-sst.mdx similarity index 97% rename from src/content/docs/en/guides/deploy/sst.mdx rename to src/content/docs/en/guides/deploy/aws-via-sst.mdx index 0a245a97af244..d212804b33afc 100644 --- a/src/content/docs/en/guides/deploy/sst.mdx +++ b/src/content/docs/en/guides/deploy/aws-via-sst.mdx @@ -2,9 +2,9 @@ title: Deploy your Astro Site to AWS with SST description: How to deploy your Astro site to AWS with SST sidebar: - label: SST + label: AWS via SST type: deploy -service: AWS via SST +logo: sst supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/en/guides/deploy/aws.mdx b/src/content/docs/en/guides/deploy/aws.mdx index 5a8c361e64cbc..a5198fd237b8d 100644 --- a/src/content/docs/en/guides/deploy/aws.mdx +++ b/src/content/docs/en/guides/deploy/aws.mdx @@ -4,7 +4,7 @@ description: How to deploy your Astro site to the web using AWS. sidebar: label: AWS type: deploy -service: AWS +logo: aws supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/en/guides/deploy/azion.mdx b/src/content/docs/en/guides/deploy/azion.mdx index abe524ae39356..849de5ef06829 100644 --- a/src/content/docs/en/guides/deploy/azion.mdx +++ b/src/content/docs/en/guides/deploy/azion.mdx @@ -4,7 +4,7 @@ description: How to deploy your Astro site to the web using Azion. sidebar: label: Azion type: deploy -service: Azion +logo: azion supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/en/guides/deploy/buddy.mdx b/src/content/docs/en/guides/deploy/buddy.mdx index 579c1a37ff59e..f36030af8cc55 100644 --- a/src/content/docs/en/guides/deploy/buddy.mdx +++ b/src/content/docs/en/guides/deploy/buddy.mdx @@ -4,7 +4,7 @@ description: How to deploy your Astro site to the web using Buddy. sidebar: label: Buddy type: deploy -service: Buddy +logo: buddy supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/en/guides/deploy/cleavr.mdx b/src/content/docs/en/guides/deploy/cleavr.mdx index 0de914ef057a2..b94aa3b255ceb 100644 --- a/src/content/docs/en/guides/deploy/cleavr.mdx +++ b/src/content/docs/en/guides/deploy/cleavr.mdx @@ -4,7 +4,7 @@ description: How to deploy your Astro site to your VPS server using Cleavr. sidebar: label: Cleavr type: deploy -service: Cleavr +logo: cleavr supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/en/guides/deploy/clever-cloud.mdx b/src/content/docs/en/guides/deploy/clever-cloud.mdx index 73dab8d516193..6cd0231c45cc1 100644 --- a/src/content/docs/en/guides/deploy/clever-cloud.mdx +++ b/src/content/docs/en/guides/deploy/clever-cloud.mdx @@ -4,7 +4,7 @@ description: How to deploy your Astro site to the web on Clever Cloud. sidebar: label: Clever Cloud type: deploy -service: Clever Cloud +logo: clever-cloud supports: ['static', 'ssr'] i18nReady: true --- diff --git a/src/content/docs/en/guides/deploy/cloudflare.mdx b/src/content/docs/en/guides/deploy/cloudflare.mdx index bdd871bef9fb9..0637160c2a308 100644 --- a/src/content/docs/en/guides/deploy/cloudflare.mdx +++ b/src/content/docs/en/guides/deploy/cloudflare.mdx @@ -4,7 +4,7 @@ description: How to deploy your Astro site to the web using Cloudflare sidebar: label: Cloudflare type: deploy -service: Cloudflare Pages +logo: cloudflare supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/en/guides/deploy/cloudray.mdx b/src/content/docs/en/guides/deploy/cloudray.mdx index 9f5149efe702a..43d98e31cc1da 100644 --- a/src/content/docs/en/guides/deploy/cloudray.mdx +++ b/src/content/docs/en/guides/deploy/cloudray.mdx @@ -4,7 +4,7 @@ description: How to deploy your Astro site to your Ubuntu Server using CloudRay sidebar: label: CloudRay type: deploy -service: CloudRay +logo: cloudray supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/en/guides/deploy/deno.mdx b/src/content/docs/en/guides/deploy/deno.mdx index af949b69e7644..f4fad30ebc9cb 100644 --- a/src/content/docs/en/guides/deploy/deno.mdx +++ b/src/content/docs/en/guides/deploy/deno.mdx @@ -4,7 +4,7 @@ description: How to deploy your Astro site to the web using Deno. sidebar: label: Deno Deploy type: deploy -service: Deno Deploy +logo: deno supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/en/guides/deploy/deployhq.mdx b/src/content/docs/en/guides/deploy/deployhq.mdx index dbbc4a92d3d63..e05e4b77f96ad 100644 --- a/src/content/docs/en/guides/deploy/deployhq.mdx +++ b/src/content/docs/en/guides/deploy/deployhq.mdx @@ -4,7 +4,7 @@ description: How to deploy your Astro site to the web using DeployHQ. sidebar: label: DeployHQ type: deploy -service: DeployHQ +logo: deployhq supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/en/guides/deploy/fleek.mdx b/src/content/docs/en/guides/deploy/fleek.mdx index 3ec89ad4feb3d..66669b215bb26 100644 --- a/src/content/docs/en/guides/deploy/fleek.mdx +++ b/src/content/docs/en/guides/deploy/fleek.mdx @@ -4,7 +4,7 @@ description: How to deploy your Astro site to the web on Fleek. sidebar: label: Fleek type: deploy -service: Fleek +logo: fleek supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/en/guides/deploy/flyio.mdx b/src/content/docs/en/guides/deploy/flyio.mdx index b86537bb365d1..de496eee64b6b 100644 --- a/src/content/docs/en/guides/deploy/flyio.mdx +++ b/src/content/docs/en/guides/deploy/flyio.mdx @@ -4,7 +4,7 @@ description: How to deploy your Astro site to the web using Fly.io. sidebar: label: Fly.io type: deploy -service: Fly.io +logo: flyio supports: ['ssr', 'static'] i18nReady: true stub: true diff --git a/src/content/docs/en/guides/deploy/github.mdx b/src/content/docs/en/guides/deploy/github.mdx index 76b67cf8a99ea..1d56bba43d2d6 100644 --- a/src/content/docs/en/guides/deploy/github.mdx +++ b/src/content/docs/en/guides/deploy/github.mdx @@ -4,7 +4,7 @@ description: How to deploy your Astro site to the web using GitHub Pages. sidebar: label: GitHub Pages type: deploy -service: GitHub Pages +logo: github supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/en/guides/deploy/gitlab.mdx b/src/content/docs/en/guides/deploy/gitlab.mdx index c13929d7403f2..48b76f46dc3d5 100644 --- a/src/content/docs/en/guides/deploy/gitlab.mdx +++ b/src/content/docs/en/guides/deploy/gitlab.mdx @@ -4,7 +4,7 @@ description: How to deploy your Astro site to the web using GitLab Pages. sidebar: label: GitLab Pages type: deploy -service: GitLab Pages +logo: gitlab supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/en/guides/deploy/google-cloud.mdx b/src/content/docs/en/guides/deploy/google-cloud.mdx index af2353a7860f3..82f94c3273bdc 100644 --- a/src/content/docs/en/guides/deploy/google-cloud.mdx +++ b/src/content/docs/en/guides/deploy/google-cloud.mdx @@ -4,7 +4,7 @@ description: How to deploy your Astro site to the web using Google Cloud. sidebar: label: Google Cloud type: deploy -service: Google Cloud +logo: google-cloud supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/en/guides/deploy/google-firebase.mdx b/src/content/docs/en/guides/deploy/google-firebase.mdx index 48d0a16461b1c..114932e5ac983 100644 --- a/src/content/docs/en/guides/deploy/google-firebase.mdx +++ b/src/content/docs/en/guides/deploy/google-firebase.mdx @@ -4,7 +4,7 @@ description: How to deploy your Astro site to the web using Google’s Firebase sidebar: label: Google Firebase type: deploy -service: Firebase +logo: google-firebase supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/en/guides/deploy/heroku.mdx b/src/content/docs/en/guides/deploy/heroku.mdx index aaf46b159f0d8..4d2ba3865ceb7 100644 --- a/src/content/docs/en/guides/deploy/heroku.mdx +++ b/src/content/docs/en/guides/deploy/heroku.mdx @@ -4,7 +4,7 @@ description: How to deploy your Astro site to the web using Heroku. sidebar: label: Heroku type: deploy -service: Heroku +logo: heroku supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/en/guides/deploy/juno.mdx b/src/content/docs/en/guides/deploy/juno.mdx index d5ef4b6a9f9a7..8558a08e2b00f 100644 --- a/src/content/docs/en/guides/deploy/juno.mdx +++ b/src/content/docs/en/guides/deploy/juno.mdx @@ -4,7 +4,7 @@ description: How to deploy your Astro site to the web using Juno. sidebar: label: Juno type: deploy -service: Juno +logo: juno supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/en/guides/deploy/kinsta.mdx b/src/content/docs/en/guides/deploy/kinsta.mdx index 2b316f974a30b..7f92577819f62 100644 --- a/src/content/docs/en/guides/deploy/kinsta.mdx +++ b/src/content/docs/en/guides/deploy/kinsta.mdx @@ -4,7 +4,7 @@ description: How to deploy your Astro site to the web on Kinsta Application Host sidebar: label: Kinsta type: deploy -service: Kinsta +logo: kinsta supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/en/guides/deploy/microsoft-azure.mdx b/src/content/docs/en/guides/deploy/microsoft-azure.mdx index cd49d067d21ea..9eba99e7c30ac 100644 --- a/src/content/docs/en/guides/deploy/microsoft-azure.mdx +++ b/src/content/docs/en/guides/deploy/microsoft-azure.mdx @@ -4,7 +4,7 @@ description: How to deploy your Astro site to the web using Microsoft Azure. sidebar: label: Microsoft Azure type: deploy -service: Microsoft Azure +logo: microsoft-azure supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/en/guides/deploy/netlify.mdx b/src/content/docs/en/guides/deploy/netlify.mdx index 53c6d34ac2b84..1d59154bafb77 100644 --- a/src/content/docs/en/guides/deploy/netlify.mdx +++ b/src/content/docs/en/guides/deploy/netlify.mdx @@ -4,7 +4,7 @@ description: How to deploy your Astro site to the web on Netlify. sidebar: label: Netlify type: deploy -service: Netlify +logo: netlify supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/en/guides/deploy/railway.mdx b/src/content/docs/en/guides/deploy/railway.mdx index 5989485f7effd..d26f31c286152 100644 --- a/src/content/docs/en/guides/deploy/railway.mdx +++ b/src/content/docs/en/guides/deploy/railway.mdx @@ -5,7 +5,7 @@ sidebar: label: Railway type: deploy i18nReady: true -service: Railway +logo: railway supports: ['ssr', 'static'] stub: true --- diff --git a/src/content/docs/en/guides/deploy/render.mdx b/src/content/docs/en/guides/deploy/render.mdx index ae439f243d838..f47324e19007a 100644 --- a/src/content/docs/en/guides/deploy/render.mdx +++ b/src/content/docs/en/guides/deploy/render.mdx @@ -4,7 +4,7 @@ description: How to deploy your Astro site to the web using Render. sidebar: label: Render type: deploy -service: Render +logo: render supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/en/guides/deploy/seenode.mdx b/src/content/docs/en/guides/deploy/seenode.mdx index d331b79af2fbd..6b75531b2804c 100644 --- a/src/content/docs/en/guides/deploy/seenode.mdx +++ b/src/content/docs/en/guides/deploy/seenode.mdx @@ -4,7 +4,7 @@ description: How to deploy your Astro site to the web on Seenode. sidebar: label: Seenode type: deploy -service: Seenode +logo: seenode supports: ['ssr'] i18nReady: true --- @@ -102,4 +102,4 @@ You can deploy to Seenode through the web interface by connecting your Git repos - [Seenode Cloud](https://cloud.seenode.com) — Seenode dashboard - [Seenode Documentation](https://seenode.com/docs) — complete platform documentation - [Seenode Astro Guide](https://seenode.com/docs/frameworks/javascript/astro/) — detailed deployment guide and troubleshooting -- [Seenode Astro Template](https://github.com/seenode/example-astro) — pre-configured starter template \ No newline at end of file +- [Seenode Astro Template](https://github.com/seenode/example-astro) — pre-configured starter template diff --git a/src/content/docs/en/guides/deploy/stormkit.mdx b/src/content/docs/en/guides/deploy/stormkit.mdx index 0845c066fb47b..a0bd137152f48 100644 --- a/src/content/docs/en/guides/deploy/stormkit.mdx +++ b/src/content/docs/en/guides/deploy/stormkit.mdx @@ -4,7 +4,7 @@ description: Deploy your Astro site to Stormkit sidebar: label: Stormkit type: deploy -service: Stormkit +logo: stormkit supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/en/guides/deploy/surge.mdx b/src/content/docs/en/guides/deploy/surge.mdx index 4cb40be139672..6675a87520cba 100644 --- a/src/content/docs/en/guides/deploy/surge.mdx +++ b/src/content/docs/en/guides/deploy/surge.mdx @@ -4,7 +4,7 @@ description: How to deploy your Astro site to the web using Surge sidebar: label: Surge type: deploy -service: Surge +logo: surge supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/en/guides/deploy/vercel.mdx b/src/content/docs/en/guides/deploy/vercel.mdx index 60a9a002ae2b5..f5357116dc0c2 100644 --- a/src/content/docs/en/guides/deploy/vercel.mdx +++ b/src/content/docs/en/guides/deploy/vercel.mdx @@ -4,7 +4,7 @@ description: How to deploy your Astro site to the web on Vercel. sidebar: label: Vercel type: deploy -service: Vercel +logo: vercel supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/en/guides/deploy/zeabur.mdx b/src/content/docs/en/guides/deploy/zeabur.mdx index 4f459407d7f46..e6d6b83efd91e 100644 --- a/src/content/docs/en/guides/deploy/zeabur.mdx +++ b/src/content/docs/en/guides/deploy/zeabur.mdx @@ -4,7 +4,7 @@ description: How to deploy your Astro site to the web on Zeabur. sidebar: label: Zeabur type: deploy -service: Zeabur +logo: zeabur supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/en/guides/deploy/zephyr.mdx b/src/content/docs/en/guides/deploy/zephyr.mdx index fc5f3917477c2..d9e37babb06cd 100644 --- a/src/content/docs/en/guides/deploy/zephyr.mdx +++ b/src/content/docs/en/guides/deploy/zephyr.mdx @@ -4,7 +4,7 @@ description: How to deploy your Astro site to the web using Zephyr Cloud. sidebar: label: Zephyr Cloud type: deploy -service: Zephyr Cloud +logo: zephyr supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/en/guides/deploy/zerops.mdx b/src/content/docs/en/guides/deploy/zerops.mdx index d798546522d66..3941cec77a0f8 100644 --- a/src/content/docs/en/guides/deploy/zerops.mdx +++ b/src/content/docs/en/guides/deploy/zerops.mdx @@ -4,7 +4,7 @@ description: How to deploy your Astro site to the web using Zerops. sidebar: label: Zerops type: deploy -service: Zerops +logo: zerops supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/es/guides/deploy/azion.mdx b/src/content/docs/es/guides/deploy/azion.mdx index 614f74bbff558..ef6600660f710 100644 --- a/src/content/docs/es/guides/deploy/azion.mdx +++ b/src/content/docs/es/guides/deploy/azion.mdx @@ -4,7 +4,7 @@ description: Cómo desplegar tu sitio Astro en la web usando Azion. sidebar: label: Azion type: deploy -service: Azion +logo: azion supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/es/guides/deploy/clever-cloud.mdx b/src/content/docs/es/guides/deploy/clever-cloud.mdx index a88139a7e1d20..3cb97812d0957 100644 --- a/src/content/docs/es/guides/deploy/clever-cloud.mdx +++ b/src/content/docs/es/guides/deploy/clever-cloud.mdx @@ -4,7 +4,7 @@ description: Cómo desplegar tu sitio Astro en la web en Clever Cloud. sidebar: label: Clever Cloud type: deploy -service: Clever Cloud +logo: clever-cloud supports: ['static', 'ssr'] i18nReady: true --- diff --git a/src/content/docs/es/guides/deploy/cloudray.mdx b/src/content/docs/es/guides/deploy/cloudray.mdx index 6339f743436ca..bb4d9d25f771b 100644 --- a/src/content/docs/es/guides/deploy/cloudray.mdx +++ b/src/content/docs/es/guides/deploy/cloudray.mdx @@ -4,7 +4,7 @@ description: Cómo desplegar tu sitio de Astro en tu servidor Ubuntu utilizando sidebar: label: CloudRay type: deploy -service: CloudRay +logo: cloudray supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/es/guides/deploy/fleek.mdx b/src/content/docs/es/guides/deploy/fleek.mdx index cc2b609fb4c47..0eda461381eba 100644 --- a/src/content/docs/es/guides/deploy/fleek.mdx +++ b/src/content/docs/es/guides/deploy/fleek.mdx @@ -4,7 +4,7 @@ description: Cómo desplegar tu sitio de Astro en la web en Fleek. sidebar: label: Fleek type: deploy -service: Fleek +logo: fleek supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/es/guides/deploy/github.mdx b/src/content/docs/es/guides/deploy/github.mdx index e5807880d30a8..63c9ad123af0c 100644 --- a/src/content/docs/es/guides/deploy/github.mdx +++ b/src/content/docs/es/guides/deploy/github.mdx @@ -4,7 +4,7 @@ description: Cómo desplegar tu proyecto de Astro usando GitHub Pages. sidebar: label: GitHub Pages type: deploy -service: GitHub Pages +logo: github supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/es/guides/deploy/railway.mdx b/src/content/docs/es/guides/deploy/railway.mdx index ed9cf329e4612..092ce260eee0b 100644 --- a/src/content/docs/es/guides/deploy/railway.mdx +++ b/src/content/docs/es/guides/deploy/railway.mdx @@ -4,7 +4,7 @@ description: Cómo desplegar tu sitio de Astro utilizando la interfaz web de Rai sidebar: label: Railway type: deploy -service: Railway +logo: railway supports: ['ssr', 'static'] i18nReady: true stub: true diff --git a/src/content/docs/fr/guides/deploy/flightcontrol.mdx b/src/content/docs/fr/guides/deploy/aws-via-flightcontrol.mdx similarity index 97% rename from src/content/docs/fr/guides/deploy/flightcontrol.mdx rename to src/content/docs/fr/guides/deploy/aws-via-flightcontrol.mdx index b4ab15d76b7ce..1cb37dc6e375f 100644 --- a/src/content/docs/fr/guides/deploy/flightcontrol.mdx +++ b/src/content/docs/fr/guides/deploy/aws-via-flightcontrol.mdx @@ -2,9 +2,9 @@ title: Déployer votre site Astro sur AWS avec Flightcontrol description: Comment déployer votre site Astro sur AWS avec Flightcontrol sidebar: - label: Flightcontrol + label: AWS avec Flightcontrol type: deploy -service: AWS via Flightcontrol +logo: flightcontrol supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/fr/guides/deploy/sst.mdx b/src/content/docs/fr/guides/deploy/aws-via-sst.mdx similarity index 98% rename from src/content/docs/fr/guides/deploy/sst.mdx rename to src/content/docs/fr/guides/deploy/aws-via-sst.mdx index 7a1452d9178db..68967764ae778 100644 --- a/src/content/docs/fr/guides/deploy/sst.mdx +++ b/src/content/docs/fr/guides/deploy/aws-via-sst.mdx @@ -2,9 +2,9 @@ title: Déployer votre site Astro sur AWS avec SST description: Comment déployer votre site Astro sur AWS avec SST sidebar: - label: SST + label: AWS avec SST type: deploy -service: AWS via SST +logo: sst supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/fr/guides/deploy/aws.mdx b/src/content/docs/fr/guides/deploy/aws.mdx index 0ccb411e4d342..44e39825035e3 100644 --- a/src/content/docs/fr/guides/deploy/aws.mdx +++ b/src/content/docs/fr/guides/deploy/aws.mdx @@ -4,7 +4,7 @@ description: Comment déployer votre site Astro sur le web en utilisant AWS. sidebar: label: AWS type: deploy -service: AWS +logo: aws supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/fr/guides/deploy/azion.mdx b/src/content/docs/fr/guides/deploy/azion.mdx index ffbd3a882b773..68800eba2b1e6 100644 --- a/src/content/docs/fr/guides/deploy/azion.mdx +++ b/src/content/docs/fr/guides/deploy/azion.mdx @@ -4,7 +4,7 @@ description: Comment déployer votre site Astro sur le Web à l'aide d'Azion. sidebar: label: Azion type: deploy -service: Azion +logo: azion supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/fr/guides/deploy/buddy.mdx b/src/content/docs/fr/guides/deploy/buddy.mdx index ef013adbd783b..a5bb60771ece7 100644 --- a/src/content/docs/fr/guides/deploy/buddy.mdx +++ b/src/content/docs/fr/guides/deploy/buddy.mdx @@ -4,7 +4,7 @@ description: Comment déployer votre site Astro sur le web en utilisant Buddy. sidebar: label: Buddy type: deploy -service: Buddy +logo: buddy supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/fr/guides/deploy/cleavr.mdx b/src/content/docs/fr/guides/deploy/cleavr.mdx index 2a01679939ce7..62d33f4df7696 100644 --- a/src/content/docs/fr/guides/deploy/cleavr.mdx +++ b/src/content/docs/fr/guides/deploy/cleavr.mdx @@ -4,7 +4,7 @@ description: Comment déployer votre site Astro sur votre serveur VPS en utilisa sidebar: label: Cleavr type: deploy -service: Cleavr +logo: cleavr supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/fr/guides/deploy/clever-cloud.mdx b/src/content/docs/fr/guides/deploy/clever-cloud.mdx index 9a8df6439a634..8bcfee789f873 100644 --- a/src/content/docs/fr/guides/deploy/clever-cloud.mdx +++ b/src/content/docs/fr/guides/deploy/clever-cloud.mdx @@ -4,7 +4,7 @@ description: Comment déployer votre site Astro sur le web avec Clever Cloud. sidebar: label: Clever Cloud type: deploy -service: Clever Cloud +logo: clever-cloud supports: ['static', 'ssr'] i18nReady: true --- diff --git a/src/content/docs/fr/guides/deploy/cloudflare.mdx b/src/content/docs/fr/guides/deploy/cloudflare.mdx index bfd6892e0179c..0a6db3c7d3191 100644 --- a/src/content/docs/fr/guides/deploy/cloudflare.mdx +++ b/src/content/docs/fr/guides/deploy/cloudflare.mdx @@ -4,7 +4,7 @@ description: Comment déployer votre site Astro sur le web en utilisant Cloudfla sidebar: label: Cloudflare type: deploy -service: Cloudflare Pages +logo: cloudflare supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/fr/guides/deploy/cloudray.mdx b/src/content/docs/fr/guides/deploy/cloudray.mdx index 40560a2dfae0a..c898608161664 100644 --- a/src/content/docs/fr/guides/deploy/cloudray.mdx +++ b/src/content/docs/fr/guides/deploy/cloudray.mdx @@ -4,7 +4,7 @@ description: Comment déployer votre site Astro sur votre serveur Ubuntu à l'ai sidebar: label: CloudRay type: deploy -service: CloudRay +logo: cloudray supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/fr/guides/deploy/deno.mdx b/src/content/docs/fr/guides/deploy/deno.mdx index 47daba09e24a4..507ee2630aac1 100644 --- a/src/content/docs/fr/guides/deploy/deno.mdx +++ b/src/content/docs/fr/guides/deploy/deno.mdx @@ -4,7 +4,7 @@ description: Comment déployer votre site Astro sur le web en utilisant Deno. sidebar: label: Deno Deploy type: deploy -service: Deno Deploy +logo: deno supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/fr/guides/deploy/deployhq.mdx b/src/content/docs/fr/guides/deploy/deployhq.mdx index fe10ea4f9127e..0e727fef789e9 100644 --- a/src/content/docs/fr/guides/deploy/deployhq.mdx +++ b/src/content/docs/fr/guides/deploy/deployhq.mdx @@ -4,7 +4,7 @@ description: Comment déployer votre site Astro sur le web en utilisant DeployHQ sidebar: label: DeployHQ type: deploy -service: DeployHQ +logo: deployhq supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/fr/guides/deploy/fleek.mdx b/src/content/docs/fr/guides/deploy/fleek.mdx index 47165a7b80f6c..95dea595cab37 100644 --- a/src/content/docs/fr/guides/deploy/fleek.mdx +++ b/src/content/docs/fr/guides/deploy/fleek.mdx @@ -4,7 +4,7 @@ description: Comment déployer votre site Astro sur le web avec Fleek. sidebar: label: Fleek type: deploy -service: Fleek +logo: fleek supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/fr/guides/deploy/flyio.mdx b/src/content/docs/fr/guides/deploy/flyio.mdx index 40c5fc6bc5c45..8aa43c531d2a2 100644 --- a/src/content/docs/fr/guides/deploy/flyio.mdx +++ b/src/content/docs/fr/guides/deploy/flyio.mdx @@ -4,7 +4,7 @@ description: Comment déployer votre site Astro sur le web en utilisant Fly.io. sidebar: label: Fly.io type: deploy -service: Fly.io +logo: flyio supports: ['ssr', 'static'] i18nReady: true stub: true diff --git a/src/content/docs/fr/guides/deploy/github.mdx b/src/content/docs/fr/guides/deploy/github.mdx index f0805f8cf25c1..05498d78f0cf6 100644 --- a/src/content/docs/fr/guides/deploy/github.mdx +++ b/src/content/docs/fr/guides/deploy/github.mdx @@ -4,7 +4,7 @@ description: Comment déployer votre site Astro sur le Web à l'aide de GitHub P sidebar: label: GitHub Pages type: deploy -service: GitHub Pages +logo: github supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/fr/guides/deploy/gitlab.mdx b/src/content/docs/fr/guides/deploy/gitlab.mdx index e03044cb9b1fd..569966a4c0006 100644 --- a/src/content/docs/fr/guides/deploy/gitlab.mdx +++ b/src/content/docs/fr/guides/deploy/gitlab.mdx @@ -4,7 +4,7 @@ description: Comment déployer votre site Astro sur le web en utilisant GitLab P sidebar: label: GitLab Pages type: deploy -service: GitLab Pages +logo: gitlab supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/fr/guides/deploy/google-cloud.mdx b/src/content/docs/fr/guides/deploy/google-cloud.mdx index a3e801ee44855..e6731c95b7990 100644 --- a/src/content/docs/fr/guides/deploy/google-cloud.mdx +++ b/src/content/docs/fr/guides/deploy/google-cloud.mdx @@ -4,7 +4,7 @@ description: Comment déployer votre site Astro sur le web en utilisant Google C sidebar: label: Google Cloud type: deploy -service: Google Cloud +logo: google-cloud supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/fr/guides/deploy/google-firebase.mdx b/src/content/docs/fr/guides/deploy/google-firebase.mdx index bf280d72d8216..ff484abd15349 100644 --- a/src/content/docs/fr/guides/deploy/google-firebase.mdx +++ b/src/content/docs/fr/guides/deploy/google-firebase.mdx @@ -4,7 +4,7 @@ description: Comment déployer votre site Astro sur le web en utilisant l'héber sidebar: label: Google Firebase type: deploy -service: Firebase +logo: google-firebase supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/fr/guides/deploy/heroku.mdx b/src/content/docs/fr/guides/deploy/heroku.mdx index 58f5103962266..d03dda4338e77 100644 --- a/src/content/docs/fr/guides/deploy/heroku.mdx +++ b/src/content/docs/fr/guides/deploy/heroku.mdx @@ -4,7 +4,7 @@ description: Comment déployer votre site Astro sur le web en utilisant Heroku. sidebar: label: Heroku type: deploy -service: Heroku +logo: heroku supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/fr/guides/deploy/juno.mdx b/src/content/docs/fr/guides/deploy/juno.mdx index e50430c319e45..417fd97128494 100644 --- a/src/content/docs/fr/guides/deploy/juno.mdx +++ b/src/content/docs/fr/guides/deploy/juno.mdx @@ -4,7 +4,7 @@ description: Comment déployer votre site Astro sur le web à l'aide de Juno. sidebar: label: Juno type: deploy -service: Juno +logo: juno supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/fr/guides/deploy/kinsta.mdx b/src/content/docs/fr/guides/deploy/kinsta.mdx index 8031c1602dc2c..31b2f568723d2 100644 --- a/src/content/docs/fr/guides/deploy/kinsta.mdx +++ b/src/content/docs/fr/guides/deploy/kinsta.mdx @@ -4,7 +4,7 @@ description: Comment déployer votre site Astro sur le web avec Kinsta Applicati sidebar: label: Kinsta type: deploy -service: Kinsta +logo: kinsta supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/fr/guides/deploy/microsoft-azure.mdx b/src/content/docs/fr/guides/deploy/microsoft-azure.mdx index 8cdebb286f60b..a9b40cc70169d 100644 --- a/src/content/docs/fr/guides/deploy/microsoft-azure.mdx +++ b/src/content/docs/fr/guides/deploy/microsoft-azure.mdx @@ -4,7 +4,7 @@ description: Comment déployer votre site Astro sur le web en utilisant Microsof sidebar: label: Microsoft Azure type: deploy -service: Microsoft Azure +logo: microsoft-azure supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/fr/guides/deploy/netlify.mdx b/src/content/docs/fr/guides/deploy/netlify.mdx index 08633ca78ef2e..38b6080562bf6 100644 --- a/src/content/docs/fr/guides/deploy/netlify.mdx +++ b/src/content/docs/fr/guides/deploy/netlify.mdx @@ -4,7 +4,7 @@ description: Comment déployer votre site Astro sur le web sur Netlify. sidebar: label: Netlify type: deploy -service: Netlify +logo: netlify supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/fr/guides/deploy/railway.mdx b/src/content/docs/fr/guides/deploy/railway.mdx index ba06ad9d4927c..d6692494d3ff2 100644 --- a/src/content/docs/fr/guides/deploy/railway.mdx +++ b/src/content/docs/fr/guides/deploy/railway.mdx @@ -4,7 +4,7 @@ description: Comment déployer votre site Astro à l'aide de l'interface web de sidebar: label: Railway type: deploy -service: Railway +logo: railway supports: ['ssr', 'static'] i18nReady: true stub: true diff --git a/src/content/docs/fr/guides/deploy/render.mdx b/src/content/docs/fr/guides/deploy/render.mdx index bca6fe816ced5..5b606448d6851 100644 --- a/src/content/docs/fr/guides/deploy/render.mdx +++ b/src/content/docs/fr/guides/deploy/render.mdx @@ -4,7 +4,7 @@ description: Comment déployer votre site Astro sur le Web avec Render. sidebar: label: Render type: deploy -service: Render +logo: render supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/fr/guides/deploy/seenode.mdx b/src/content/docs/fr/guides/deploy/seenode.mdx index c63f374b53a0f..cc7aa316c2f92 100644 --- a/src/content/docs/fr/guides/deploy/seenode.mdx +++ b/src/content/docs/fr/guides/deploy/seenode.mdx @@ -4,7 +4,7 @@ description: Comment déployer votre site Astro sur le web avec Seenode. sidebar: label: Seenode type: deploy -service: Seenode +logo: seenode supports: ['ssr'] i18nReady: true --- diff --git a/src/content/docs/fr/guides/deploy/stormkit.mdx b/src/content/docs/fr/guides/deploy/stormkit.mdx index 3eb712ffac824..117860a87a10b 100644 --- a/src/content/docs/fr/guides/deploy/stormkit.mdx +++ b/src/content/docs/fr/guides/deploy/stormkit.mdx @@ -4,7 +4,7 @@ description: Déployez votre site Astro depuis Stormkit sidebar: label: Stormkit type: deploy -service: Stormkit +logo: stormkit supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/fr/guides/deploy/surge.mdx b/src/content/docs/fr/guides/deploy/surge.mdx index 0361391939fb1..d95d279771a84 100644 --- a/src/content/docs/fr/guides/deploy/surge.mdx +++ b/src/content/docs/fr/guides/deploy/surge.mdx @@ -4,7 +4,7 @@ description: Comment déployer votre site Astro sur le Web avec Surge. sidebar: label: Surge type: deploy -service: Surge +logo: surge supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/fr/guides/deploy/vercel.mdx b/src/content/docs/fr/guides/deploy/vercel.mdx index 4db41946064bb..700c9d6835355 100644 --- a/src/content/docs/fr/guides/deploy/vercel.mdx +++ b/src/content/docs/fr/guides/deploy/vercel.mdx @@ -4,7 +4,7 @@ description: Comment déployer votre site Astro vers le web sur Vercel. sidebar: label: Vercel type: deploy -service: Vercel +logo: vercel supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/fr/guides/deploy/zeabur.mdx b/src/content/docs/fr/guides/deploy/zeabur.mdx index d0d056c399bdc..516412d1bcf17 100644 --- a/src/content/docs/fr/guides/deploy/zeabur.mdx +++ b/src/content/docs/fr/guides/deploy/zeabur.mdx @@ -4,7 +4,7 @@ description: Comment déployer votre site Astro sur le web avec Zeabur. sidebar: label: Zeabur type: deploy -service: Zeabur +logo: zeabur supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/fr/guides/deploy/zephyr.mdx b/src/content/docs/fr/guides/deploy/zephyr.mdx index a15aba8203a21..5b076f9196676 100644 --- a/src/content/docs/fr/guides/deploy/zephyr.mdx +++ b/src/content/docs/fr/guides/deploy/zephyr.mdx @@ -4,7 +4,7 @@ description: Comment déployer votre site Astro sur le web à l'aide de Zephyr C sidebar: label: Zephyr Cloud type: deploy -service: Zephyr Cloud +logo: zephyr supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/fr/guides/deploy/zerops.mdx b/src/content/docs/fr/guides/deploy/zerops.mdx index 5d7cf4e767f4f..1cd272a073b78 100644 --- a/src/content/docs/fr/guides/deploy/zerops.mdx +++ b/src/content/docs/fr/guides/deploy/zerops.mdx @@ -4,7 +4,7 @@ description: Comment déployer votre site Astro sur le web en utilisant Zerops. sidebar: label: Zerops type: deploy -service: Zerops +logo: zerops supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/ja/guides/deploy/render.mdx b/src/content/docs/ja/guides/deploy/render.mdx index 79a501994b800..d8af53d47f8ec 100644 --- a/src/content/docs/ja/guides/deploy/render.mdx +++ b/src/content/docs/ja/guides/deploy/render.mdx @@ -2,7 +2,7 @@ title: AstroサイトをRenderにデプロイする description: RenderでAstroサイトをデプロイする方法。 type: deploy -service: Render +logo: render supports: ['static'] sidebar: label: Render diff --git a/src/content/docs/ko/guides/deploy/flightcontrol.mdx b/src/content/docs/ko/guides/deploy/aws-via-flightcontrol.mdx similarity index 96% rename from src/content/docs/ko/guides/deploy/flightcontrol.mdx rename to src/content/docs/ko/guides/deploy/aws-via-flightcontrol.mdx index 047bc0cd54f57..a13b99be96549 100644 --- a/src/content/docs/ko/guides/deploy/flightcontrol.mdx +++ b/src/content/docs/ko/guides/deploy/aws-via-flightcontrol.mdx @@ -2,9 +2,9 @@ title: Flightcontrol을 사용하여 Astro 사이트를 AWS에 배포 description: Flightcontrol을 사용하여 Astro 사이트를 AWS에 배포하는 방법 sidebar: - label: Flightcontrol + label: AWS via Flightcontrol type: deploy -service: AWS via Flightcontrol +logo: flightcontrol supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/ko/guides/deploy/sst.mdx b/src/content/docs/ko/guides/deploy/aws-via-sst.mdx similarity index 98% rename from src/content/docs/ko/guides/deploy/sst.mdx rename to src/content/docs/ko/guides/deploy/aws-via-sst.mdx index 4377b2aa16897..fde0dfe183591 100644 --- a/src/content/docs/ko/guides/deploy/sst.mdx +++ b/src/content/docs/ko/guides/deploy/aws-via-sst.mdx @@ -2,9 +2,9 @@ title: SST를 사용하여 Astro 사이트를 AWS에 배포 description: SST를 사용하여 Astro 사이트를 AWS에 배포하는 방법 sidebar: - label: SST + label: AWS via SST type: deploy -service: AWS via SST +logo: sst supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/ko/guides/deploy/aws.mdx b/src/content/docs/ko/guides/deploy/aws.mdx index b903d8893325c..6e55e4d4eba18 100644 --- a/src/content/docs/ko/guides/deploy/aws.mdx +++ b/src/content/docs/ko/guides/deploy/aws.mdx @@ -4,7 +4,7 @@ description: AWS를 사용하여 Astro 사이트를 웹에 배포하는 방법. sidebar: label: AWS type: deploy -service: AWS +logo: aws supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/ko/guides/deploy/azion.mdx b/src/content/docs/ko/guides/deploy/azion.mdx index 88df0c9eebc86..723561cebe2a8 100644 --- a/src/content/docs/ko/guides/deploy/azion.mdx +++ b/src/content/docs/ko/guides/deploy/azion.mdx @@ -4,7 +4,7 @@ description: Azion을 사용하여 Astro 사이트를 웹에 배포하는 방법 sidebar: label: Azion type: deploy -service: Azion +logo: azion supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/ko/guides/deploy/buddy.mdx b/src/content/docs/ko/guides/deploy/buddy.mdx index 32c8dcca4b941..9dbc459584978 100644 --- a/src/content/docs/ko/guides/deploy/buddy.mdx +++ b/src/content/docs/ko/guides/deploy/buddy.mdx @@ -4,7 +4,7 @@ description: Buddy를 사용하여 Astro 사이트를 웹에 배포하는 방법 sidebar: label: Buddy type: deploy -service: Buddy +logo: buddy supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/ko/guides/deploy/cleavr.mdx b/src/content/docs/ko/guides/deploy/cleavr.mdx index 9edb4c056b43b..2c80119bfcf0c 100644 --- a/src/content/docs/ko/guides/deploy/cleavr.mdx +++ b/src/content/docs/ko/guides/deploy/cleavr.mdx @@ -4,7 +4,7 @@ description: Cleavr을 사용하여 Astro 사이트를 VPS 서버에 배포하 sidebar: label: Cleavr type: deploy -service: Cleavr +logo: cleavr supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/ko/guides/deploy/clever-cloud.mdx b/src/content/docs/ko/guides/deploy/clever-cloud.mdx index 16c8d3aa8378c..4181a1598b76f 100644 --- a/src/content/docs/ko/guides/deploy/clever-cloud.mdx +++ b/src/content/docs/ko/guides/deploy/clever-cloud.mdx @@ -4,7 +4,7 @@ description: Clever Cloud로 웹에 Astro 사이트를 배포하는 방법. sidebar: label: Clever Cloud type: deploy -service: Clever Cloud +logo: clever-cloud supports: ['static', 'ssr'] i18nReady: true --- diff --git a/src/content/docs/ko/guides/deploy/cloudflare.mdx b/src/content/docs/ko/guides/deploy/cloudflare.mdx index c50b8b6a35976..1cc6b5cc7e51a 100644 --- a/src/content/docs/ko/guides/deploy/cloudflare.mdx +++ b/src/content/docs/ko/guides/deploy/cloudflare.mdx @@ -4,7 +4,7 @@ description: Cloudflare를 사용하여 Astro 사이트를 웹에 배포하는 sidebar: label: Cloudflare type: deploy -service: Cloudflare Pages +logo: cloudflare supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/ko/guides/deploy/cloudray.mdx b/src/content/docs/ko/guides/deploy/cloudray.mdx index c0f81f46d6bc9..722ae539b5663 100644 --- a/src/content/docs/ko/guides/deploy/cloudray.mdx +++ b/src/content/docs/ko/guides/deploy/cloudray.mdx @@ -4,7 +4,7 @@ description: CloudRay를 사용하여 Ubuntu 서버에 Astro 사이트를 배포 sidebar: label: CloudRay type: deploy -service: CloudRay +logo: cloudray supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/ko/guides/deploy/deno.mdx b/src/content/docs/ko/guides/deploy/deno.mdx index be59659f995c8..812e77b5eb036 100644 --- a/src/content/docs/ko/guides/deploy/deno.mdx +++ b/src/content/docs/ko/guides/deploy/deno.mdx @@ -4,7 +4,7 @@ description: Deno를 사용하여 Astro 사이트를 웹에 배포하는 방법. sidebar: label: Deno Deploy type: deploy -service: Deno Deploy +logo: deno supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/ko/guides/deploy/deployhq.mdx b/src/content/docs/ko/guides/deploy/deployhq.mdx index 9395688e53568..2e6f617ece221 100644 --- a/src/content/docs/ko/guides/deploy/deployhq.mdx +++ b/src/content/docs/ko/guides/deploy/deployhq.mdx @@ -4,7 +4,7 @@ description: DeployHQ를 사용하여 Astro 사이트를 웹에 배포하는 방 sidebar: label: DeployHQ type: deploy -service: DeployHQ +logo: deployhq supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/ko/guides/deploy/fleek.mdx b/src/content/docs/ko/guides/deploy/fleek.mdx index 20d82bc471887..772a734b34f63 100644 --- a/src/content/docs/ko/guides/deploy/fleek.mdx +++ b/src/content/docs/ko/guides/deploy/fleek.mdx @@ -4,7 +4,7 @@ description: Fleek에서 웹에 Astro 사이트를 배포하는 방법. sidebar: label: Fleek type: deploy -service: Fleek +logo: fleek supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/ko/guides/deploy/flyio.mdx b/src/content/docs/ko/guides/deploy/flyio.mdx index aaf70a252b505..3f0e0341da267 100644 --- a/src/content/docs/ko/guides/deploy/flyio.mdx +++ b/src/content/docs/ko/guides/deploy/flyio.mdx @@ -4,7 +4,7 @@ description: Fly.io를 사용하여 Astro 사이트를 웹에 배포하는 방 sidebar: label: Fly.io type: deploy -service: Fly.io +logo: flyio supports: ['ssr', 'static'] i18nReady: true stub: true diff --git a/src/content/docs/ko/guides/deploy/github.mdx b/src/content/docs/ko/guides/deploy/github.mdx index d358e79d87d03..5f15b17fee168 100644 --- a/src/content/docs/ko/guides/deploy/github.mdx +++ b/src/content/docs/ko/guides/deploy/github.mdx @@ -4,7 +4,7 @@ description: Github Pages를 사용하여 Astro 사이트를 웹에 배포하는 sidebar: label: GitHub Pages type: deploy -service: GitHub Pages +logo: github supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/ko/guides/deploy/gitlab.mdx b/src/content/docs/ko/guides/deploy/gitlab.mdx index bb40672d5a3fe..80af44d6cf9f2 100644 --- a/src/content/docs/ko/guides/deploy/gitlab.mdx +++ b/src/content/docs/ko/guides/deploy/gitlab.mdx @@ -4,7 +4,7 @@ description: GitLab Pages를 사용하여 Astro 사이트를 웹에 배포하는 sidebar: label: GitLab Pages type: deploy -service: GitLab Pages +logo: gitlab supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/ko/guides/deploy/google-cloud.mdx b/src/content/docs/ko/guides/deploy/google-cloud.mdx index 6b7331f44d79a..463dc4d43acde 100644 --- a/src/content/docs/ko/guides/deploy/google-cloud.mdx +++ b/src/content/docs/ko/guides/deploy/google-cloud.mdx @@ -4,7 +4,7 @@ description: Google Cloud를 사용하여 Astro 사이트를 웹에 배포하는 sidebar: label: Google Cloud type: deploy -service: Google Cloud +logo: google-cloud supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/ko/guides/deploy/google-firebase.mdx b/src/content/docs/ko/guides/deploy/google-firebase.mdx index a9d6942a2b47f..91a8895599481 100644 --- a/src/content/docs/ko/guides/deploy/google-firebase.mdx +++ b/src/content/docs/ko/guides/deploy/google-firebase.mdx @@ -4,7 +4,7 @@ description: Google의 Firebase Hosting을 사용하여 Astro 사이트를 웹 sidebar: label: Google Firebase type: deploy -service: Firebase +logo: google-firebase supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/ko/guides/deploy/heroku.mdx b/src/content/docs/ko/guides/deploy/heroku.mdx index 51c44e73d5de4..214421c680877 100644 --- a/src/content/docs/ko/guides/deploy/heroku.mdx +++ b/src/content/docs/ko/guides/deploy/heroku.mdx @@ -4,7 +4,7 @@ description: Heroku를 사용하여 Astro 사이트를 웹에 배포하는 방 sidebar: label: Heroku type: deploy -service: Heroku +logo: heroku supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/ko/guides/deploy/juno.mdx b/src/content/docs/ko/guides/deploy/juno.mdx index 571ef48a044be..f089d6c622c9a 100644 --- a/src/content/docs/ko/guides/deploy/juno.mdx +++ b/src/content/docs/ko/guides/deploy/juno.mdx @@ -4,7 +4,7 @@ description: Juno를 사용하여 웹에 Astro 사이트를 배포하는 방법 sidebar: label: Juno type: deploy -service: Juno +logo: juno supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/ko/guides/deploy/kinsta.mdx b/src/content/docs/ko/guides/deploy/kinsta.mdx index 407ed3d318474..2aa79c5ba2bee 100644 --- a/src/content/docs/ko/guides/deploy/kinsta.mdx +++ b/src/content/docs/ko/guides/deploy/kinsta.mdx @@ -4,7 +4,7 @@ description: Kinsta 애플리케이션 호스팅을 통해 Astro 사이트를 sidebar: label: Kinsta type: deploy -service: Kinsta +logo: kinsta supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/ko/guides/deploy/microsoft-azure.mdx b/src/content/docs/ko/guides/deploy/microsoft-azure.mdx index 29ac3b39e33dd..f32a679c9d857 100644 --- a/src/content/docs/ko/guides/deploy/microsoft-azure.mdx +++ b/src/content/docs/ko/guides/deploy/microsoft-azure.mdx @@ -4,7 +4,7 @@ description: Microsoft Azure를 사용하여 Astro 사이트를 웹에 배포하 sidebar: label: Microsoft Azure type: deploy -service: Microsoft Azure +logo: microsoft-azure supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/ko/guides/deploy/netlify.mdx b/src/content/docs/ko/guides/deploy/netlify.mdx index 8f662ca23c2af..c1e7edb05e994 100644 --- a/src/content/docs/ko/guides/deploy/netlify.mdx +++ b/src/content/docs/ko/guides/deploy/netlify.mdx @@ -4,7 +4,7 @@ description: Astro 사이트를 Netlify의 웹에 배포하는 방법. sidebar: label: Netlify type: deploy -service: Netlify +logo: netlify supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/ko/guides/deploy/railway.mdx b/src/content/docs/ko/guides/deploy/railway.mdx index 743e06ad25e03..332f719f70848 100644 --- a/src/content/docs/ko/guides/deploy/railway.mdx +++ b/src/content/docs/ko/guides/deploy/railway.mdx @@ -4,7 +4,7 @@ description: Railway 웹 인터페이스를 사용하여 Astro 사이트를 배 sidebar: label: Railway type: deploy -service: Railway +logo: railway supports: ['ssr', 'static'] i18nReady: true stub: true diff --git a/src/content/docs/ko/guides/deploy/render.mdx b/src/content/docs/ko/guides/deploy/render.mdx index 72dcf8e9b531b..abcb157f83e98 100644 --- a/src/content/docs/ko/guides/deploy/render.mdx +++ b/src/content/docs/ko/guides/deploy/render.mdx @@ -4,7 +4,7 @@ description: Render를 사용하여 Astro 사이트를 웹에 배포하는 방 sidebar: label: Render type: deploy -service: Render +logo: render supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/ko/guides/deploy/seenode.mdx b/src/content/docs/ko/guides/deploy/seenode.mdx index c97895831b643..e293e9bb83eff 100644 --- a/src/content/docs/ko/guides/deploy/seenode.mdx +++ b/src/content/docs/ko/guides/deploy/seenode.mdx @@ -4,7 +4,7 @@ description: Seenode에서 웹에 Astro 사이트를 배포하는 방법. sidebar: label: Seenode type: deploy -service: Seenode +logo: seenode supports: ['ssr'] i18nReady: true --- diff --git a/src/content/docs/ko/guides/deploy/stormkit.mdx b/src/content/docs/ko/guides/deploy/stormkit.mdx index 68934f29543b4..7b6416d11e0fd 100644 --- a/src/content/docs/ko/guides/deploy/stormkit.mdx +++ b/src/content/docs/ko/guides/deploy/stormkit.mdx @@ -4,7 +4,7 @@ description: Astro 사이트를 Stormkit에 배포 sidebar: label: Stormkit type: deploy -service: Stormkit +logo: stormkit supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/ko/guides/deploy/surge.mdx b/src/content/docs/ko/guides/deploy/surge.mdx index 656e131ba4b10..a7b1e4c072eed 100644 --- a/src/content/docs/ko/guides/deploy/surge.mdx +++ b/src/content/docs/ko/guides/deploy/surge.mdx @@ -4,7 +4,7 @@ description: Surge를 사용하여 Astro 사이트를 웹에 배포하는 방법 sidebar: label: Surge type: deploy -service: Surge +logo: surge supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/ko/guides/deploy/vercel.mdx b/src/content/docs/ko/guides/deploy/vercel.mdx index 4ebd3125519b7..fcb981c7c10cd 100644 --- a/src/content/docs/ko/guides/deploy/vercel.mdx +++ b/src/content/docs/ko/guides/deploy/vercel.mdx @@ -4,7 +4,7 @@ description: Vercel을 사용하여 Astro 사이트를 웹에 배포하는 방 sidebar: label: Vercel type: deploy -service: Vercel +logo: vercel supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/ko/guides/deploy/zeabur.mdx b/src/content/docs/ko/guides/deploy/zeabur.mdx index cab6b3243a933..cf0057c8ec621 100644 --- a/src/content/docs/ko/guides/deploy/zeabur.mdx +++ b/src/content/docs/ko/guides/deploy/zeabur.mdx @@ -4,7 +4,7 @@ description: Astro 사이트를 Zeabur의 웹에 배포하는 방법. sidebar: label: Zeabur type: deploy -service: Zeabur +logo: zeabur supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/ko/guides/deploy/zephyr.mdx b/src/content/docs/ko/guides/deploy/zephyr.mdx index 00cdd74b5491f..1158155c8c0ce 100644 --- a/src/content/docs/ko/guides/deploy/zephyr.mdx +++ b/src/content/docs/ko/guides/deploy/zephyr.mdx @@ -4,7 +4,7 @@ description: Zephyr Cloud를 사용하여 Astro 사이트를 웹에 배포하는 sidebar: label: Zephyr Cloud type: deploy -service: Zephyr Cloud +logo: zephyr supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/ko/guides/deploy/zerops.mdx b/src/content/docs/ko/guides/deploy/zerops.mdx index 84cafba5b3c84..f6814a921c62c 100644 --- a/src/content/docs/ko/guides/deploy/zerops.mdx +++ b/src/content/docs/ko/guides/deploy/zerops.mdx @@ -4,7 +4,7 @@ description: Zerops를 사용하여 Astro 사이트를 웹에 배포하는 방 sidebar: label: Zerops type: deploy -service: Zerops +logo: zerops supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/pt-br/guides/deploy/azion.mdx b/src/content/docs/pt-br/guides/deploy/azion.mdx index 4508ffe354d5b..b46bb03028757 100644 --- a/src/content/docs/pt-br/guides/deploy/azion.mdx +++ b/src/content/docs/pt-br/guides/deploy/azion.mdx @@ -2,7 +2,7 @@ title: Publique seu Site Astro na Azion description: Como publicar seu site Astro na web usando Azion. type: deploy -service: Azion +logo: azion supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/pt-br/guides/deploy/fleek.mdx b/src/content/docs/pt-br/guides/deploy/fleek.mdx index 0f249e3c2ee5c..6d422c574f740 100644 --- a/src/content/docs/pt-br/guides/deploy/fleek.mdx +++ b/src/content/docs/pt-br/guides/deploy/fleek.mdx @@ -4,7 +4,7 @@ description: Como publicar seu site Astro na web com Fleek. sidebar: label: Fleek type: deploy -service: Fleek +logo: fleek supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/pt-br/guides/deploy/stormkit.mdx b/src/content/docs/pt-br/guides/deploy/stormkit.mdx index f435724ba8e9a..4c5c76a60441e 100644 --- a/src/content/docs/pt-br/guides/deploy/stormkit.mdx +++ b/src/content/docs/pt-br/guides/deploy/stormkit.mdx @@ -2,7 +2,7 @@ title: Publique seu Site Astro na Stormkit description: Publique seu site Astro com Stormkit type: deploy -service: Stormkit +logo: stormkit supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/pt-br/guides/deploy/zeabur.mdx b/src/content/docs/pt-br/guides/deploy/zeabur.mdx index f863668234353..10558126fe17d 100644 --- a/src/content/docs/pt-br/guides/deploy/zeabur.mdx +++ b/src/content/docs/pt-br/guides/deploy/zeabur.mdx @@ -2,7 +2,7 @@ title: Publique seu site Astro na Zeabur description: Como publicar seu site Astro na web com Zeabur. type: deploy -service: Zeabur +logo: zeabur supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/pt-br/guides/deploy/zerops.mdx b/src/content/docs/pt-br/guides/deploy/zerops.mdx index d2836bd77df82..61c8018b1f705 100644 --- a/src/content/docs/pt-br/guides/deploy/zerops.mdx +++ b/src/content/docs/pt-br/guides/deploy/zerops.mdx @@ -2,7 +2,7 @@ title: Publique seu Site Astro na Zerops description: Como publicar seu site Astro na web com Zerops. type: deploy -service: Zerops +logo: zerops supports: ['ssr', 'static'] i18nReady: true --- @@ -236,4 +236,4 @@ Agora você pode [ativar a pipeline de build & deploy usando a CLI Zerops](#ativ ### Comunidade - [Publicar Astro na Zerops em 3 minutos](https://medium.com/@arjunaditya/how-to-deploy-astro-to-zerops-4230816a62b4) - [Publicar Astro SSG com Node.js na Zerops com Publicação de Um Clique](https://youtu.be/-4KTa4VWtBE) -- [Publicar Astro SSR com Node.js na Zerops com Publicação de Um Clique](https://youtu.be/eR6b_JnDH6g) \ No newline at end of file +- [Publicar Astro SSR com Node.js na Zerops com Publicação de Um Clique](https://youtu.be/eR6b_JnDH6g) diff --git a/src/content/docs/ru/guides/deploy/github.mdx b/src/content/docs/ru/guides/deploy/github.mdx index d6174f2ae2cb2..7d15220992351 100644 --- a/src/content/docs/ru/guides/deploy/github.mdx +++ b/src/content/docs/ru/guides/deploy/github.mdx @@ -4,7 +4,7 @@ description: Как развернуть свой сайт Astro в интерн sidebar: label: GitHub Pages type: deploy -service: GitHub Pages +logo: github supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/zh-cn/guides/deploy/flightcontrol.mdx b/src/content/docs/zh-cn/guides/deploy/aws-via-flightcontrol.mdx similarity index 96% rename from src/content/docs/zh-cn/guides/deploy/flightcontrol.mdx rename to src/content/docs/zh-cn/guides/deploy/aws-via-flightcontrol.mdx index 0ac00ba077676..9b494f689990b 100644 --- a/src/content/docs/zh-cn/guides/deploy/flightcontrol.mdx +++ b/src/content/docs/zh-cn/guides/deploy/aws-via-flightcontrol.mdx @@ -2,9 +2,9 @@ title: 将你的 Astro 网站通过 Flightcontrol 部署到 AWS description: 如何将你的 Astro 网站通过 Flightcontrol 部署到 AWS sidebar: - label: Flightcontrol + label: AWS via Flightcontrol type: deploy -service: AWS via Flightcontrol +logo: flightcontrol supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/zh-cn/guides/deploy/sst.mdx b/src/content/docs/zh-cn/guides/deploy/aws-via-sst.mdx similarity index 97% rename from src/content/docs/zh-cn/guides/deploy/sst.mdx rename to src/content/docs/zh-cn/guides/deploy/aws-via-sst.mdx index b4e0a54da521d..e1a22ff5a4ae7 100644 --- a/src/content/docs/zh-cn/guides/deploy/sst.mdx +++ b/src/content/docs/zh-cn/guides/deploy/aws-via-sst.mdx @@ -2,9 +2,9 @@ title: 将你的 Astro 网站通过 SST 部署到 AWS description: 如何将你的 Astro 网站通过 SST 部署到 AWS sidebar: - label: SST + label: AWS via SST type: deploy -service: AWS via SST +logo: sst supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/zh-cn/guides/deploy/aws.mdx b/src/content/docs/zh-cn/guides/deploy/aws.mdx index 06def6cf1734f..3399333aeeca8 100644 --- a/src/content/docs/zh-cn/guides/deploy/aws.mdx +++ b/src/content/docs/zh-cn/guides/deploy/aws.mdx @@ -4,7 +4,7 @@ description: 如何将你的 Astro 网站通过 AWS 部署上线 sidebar: label: AWS type: deploy -service: AWS +logo: aws supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/zh-cn/guides/deploy/azion.mdx b/src/content/docs/zh-cn/guides/deploy/azion.mdx index ce53a3ff8c9ad..34aaa3dbe7be2 100644 --- a/src/content/docs/zh-cn/guides/deploy/azion.mdx +++ b/src/content/docs/zh-cn/guides/deploy/azion.mdx @@ -4,7 +4,7 @@ description: 如何使用 Azion 将你的 Astro 站点部署到网络。 sidebar: label: Azion type: deploy -service: Azion +logo: azion supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/zh-cn/guides/deploy/buddy.mdx b/src/content/docs/zh-cn/guides/deploy/buddy.mdx index 224918e8f72be..a8324c862cc9f 100644 --- a/src/content/docs/zh-cn/guides/deploy/buddy.mdx +++ b/src/content/docs/zh-cn/guides/deploy/buddy.mdx @@ -4,7 +4,7 @@ description: 如何使用 Buddy 将你的 Astro 网站部署到网络上。 sidebar: label: Buddy type: deploy -service: Buddy +logo: buddy supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/zh-cn/guides/deploy/cleavr.mdx b/src/content/docs/zh-cn/guides/deploy/cleavr.mdx index 0558f61bd1198..5e5a671cf3a57 100644 --- a/src/content/docs/zh-cn/guides/deploy/cleavr.mdx +++ b/src/content/docs/zh-cn/guides/deploy/cleavr.mdx @@ -4,7 +4,7 @@ description: 如何将你的 Astro 网站通过 Cleavr 部署到你的 VPS 服 sidebar: label: Cleavr type: deploy -service: Cleavr +logo: cleavr supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/zh-cn/guides/deploy/clever-cloud.mdx b/src/content/docs/zh-cn/guides/deploy/clever-cloud.mdx index e0c7191e165cd..17c8251f7e21e 100644 --- a/src/content/docs/zh-cn/guides/deploy/clever-cloud.mdx +++ b/src/content/docs/zh-cn/guides/deploy/clever-cloud.mdx @@ -4,7 +4,7 @@ description: 如何使用 Clever Cloud 将你的 Astro 网站部署到网络。 sidebar: label: Clever Cloud type: deploy -service: Clever Cloud +logo: clever-cloud supports: ['static', 'ssr'] i18nReady: true --- diff --git a/src/content/docs/zh-cn/guides/deploy/cloudflare.mdx b/src/content/docs/zh-cn/guides/deploy/cloudflare.mdx index 0113076aecb4e..909151c15d4d2 100644 --- a/src/content/docs/zh-cn/guides/deploy/cloudflare.mdx +++ b/src/content/docs/zh-cn/guides/deploy/cloudflare.mdx @@ -4,7 +4,7 @@ description: 如何使用 Cloudflare 将你的 Astro 网站部署到网络上 sidebar: label: Cloudflare type: deploy -service: Cloudflare Pages +logo: cloudflare supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/zh-cn/guides/deploy/cloudray.mdx b/src/content/docs/zh-cn/guides/deploy/cloudray.mdx index 83f967bf03ff0..4bd91e5320716 100644 --- a/src/content/docs/zh-cn/guides/deploy/cloudray.mdx +++ b/src/content/docs/zh-cn/guides/deploy/cloudray.mdx @@ -4,7 +4,7 @@ description: 如何使用 CloudRay 将 Astro 网站部署到 Ubuntu 服务器 sidebar: label: CloudRay type: deploy -service: CloudRay +logo: cloudray supports: ['static'] i18nReady: true --- @@ -37,4 +37,4 @@ CloudRay 本身不托管你的网站。相反,它通过连接代理在你自 ## 官方资源 -查看 [CloudRay 文档中的 Astro 指南](https://cloudray.io/articles/how-to-deploy-your-astro-site)。 \ No newline at end of file +查看 [CloudRay 文档中的 Astro 指南](https://cloudray.io/articles/how-to-deploy-your-astro-site)。 diff --git a/src/content/docs/zh-cn/guides/deploy/deno.mdx b/src/content/docs/zh-cn/guides/deploy/deno.mdx index bffffa06d309a..ad395486d2d3e 100644 --- a/src/content/docs/zh-cn/guides/deploy/deno.mdx +++ b/src/content/docs/zh-cn/guides/deploy/deno.mdx @@ -4,7 +4,7 @@ description: 如何将你的 Astro 站点通过 Deno 部署上线。 sidebar: label: Deno Deploy type: deploy -service: Deno Deploy +logo: deno supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/zh-cn/guides/deploy/fleek.mdx b/src/content/docs/zh-cn/guides/deploy/fleek.mdx index ce2019d770521..917c64b2af4b3 100644 --- a/src/content/docs/zh-cn/guides/deploy/fleek.mdx +++ b/src/content/docs/zh-cn/guides/deploy/fleek.mdx @@ -4,7 +4,7 @@ description: 如何在 Fleek 上将你的 Astro 网站部署到网络上。 sidebar: label: Fleek type: deploy -service: Fleek +logo: fleek supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/zh-cn/guides/deploy/flyio.mdx b/src/content/docs/zh-cn/guides/deploy/flyio.mdx index 96aed6f6a71fb..8c08b9fc69316 100644 --- a/src/content/docs/zh-cn/guides/deploy/flyio.mdx +++ b/src/content/docs/zh-cn/guides/deploy/flyio.mdx @@ -4,7 +4,7 @@ description: 如何使用 Fly.io 将你的 Astro 站点部署到网络上。 sidebar: label: Fly.io type: deploy -service: Fly.io +logo: flyio supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/zh-cn/guides/deploy/github.mdx b/src/content/docs/zh-cn/guides/deploy/github.mdx index 44a43cd5a6a6c..b7ed0940f67c9 100644 --- a/src/content/docs/zh-cn/guides/deploy/github.mdx +++ b/src/content/docs/zh-cn/guides/deploy/github.mdx @@ -4,7 +4,7 @@ description: 如何使用 GitHub Pages 将你的 Astro 网站部署到网络上 sidebar: label: GitHub Pages type: deploy -service: GitHub Pages +logo: github supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/zh-cn/guides/deploy/gitlab.mdx b/src/content/docs/zh-cn/guides/deploy/gitlab.mdx index dc16bcc48568a..41729b7656654 100644 --- a/src/content/docs/zh-cn/guides/deploy/gitlab.mdx +++ b/src/content/docs/zh-cn/guides/deploy/gitlab.mdx @@ -4,7 +4,7 @@ description: 如何使用 GitLab Pages 将你的 Astro 网站部署到网络上 sidebar: label: GitLab Pages type: deploy -service: GitLab Pages +logo: gitlab supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/zh-cn/guides/deploy/google-cloud.mdx b/src/content/docs/zh-cn/guides/deploy/google-cloud.mdx index 17467a37fa192..8df00732a85b9 100644 --- a/src/content/docs/zh-cn/guides/deploy/google-cloud.mdx +++ b/src/content/docs/zh-cn/guides/deploy/google-cloud.mdx @@ -4,7 +4,7 @@ description: 了解如何将你的 Astro 网页部署到 Google Cloud。 sidebar: label: Google Cloud type: deploy -service: Google Cloud +logo: google-cloud supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/zh-cn/guides/deploy/google-firebase.mdx b/src/content/docs/zh-cn/guides/deploy/google-firebase.mdx index 07702fdabe692..d3ff03747777b 100644 --- a/src/content/docs/zh-cn/guides/deploy/google-firebase.mdx +++ b/src/content/docs/zh-cn/guides/deploy/google-firebase.mdx @@ -4,7 +4,7 @@ description: 了解如何将你的 Astro 网页部署到 Google Firebase。 sidebar: label: Google Firebase type: deploy -service: Firebase +logo: google-firebase supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/zh-cn/guides/deploy/heroku.mdx b/src/content/docs/zh-cn/guides/deploy/heroku.mdx index eaeb66a9ced59..8add5df15daa1 100644 --- a/src/content/docs/zh-cn/guides/deploy/heroku.mdx +++ b/src/content/docs/zh-cn/guides/deploy/heroku.mdx @@ -4,7 +4,7 @@ description: 如何将你的 Astro 网站通过 Heroku 部署上线。 sidebar: label: Heroku type: deploy -service: Heroku +logo: heroku supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/zh-cn/guides/deploy/kinsta.mdx b/src/content/docs/zh-cn/guides/deploy/kinsta.mdx index 436f6df08786a..b3b09c6943f6f 100644 --- a/src/content/docs/zh-cn/guides/deploy/kinsta.mdx +++ b/src/content/docs/zh-cn/guides/deploy/kinsta.mdx @@ -4,7 +4,7 @@ description: 如何将你的 Astro 网站通过 Kinsta 应用托管部署上线 sidebar: label: Kinsta type: deploy -service: Kinsta +logo: kinsta supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/zh-cn/guides/deploy/microsoft-azure.mdx b/src/content/docs/zh-cn/guides/deploy/microsoft-azure.mdx index d94a15c4c59e2..cdfe33cdd9a94 100644 --- a/src/content/docs/zh-cn/guides/deploy/microsoft-azure.mdx +++ b/src/content/docs/zh-cn/guides/deploy/microsoft-azure.mdx @@ -4,7 +4,7 @@ description: 如何将你的 Astro 网站通过 Microsoft Azure 部署上线。 sidebar: label: Microsoft Azure type: deploy -service: Microsoft Azure +logo: microsoft-azure supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/zh-cn/guides/deploy/netlify.mdx b/src/content/docs/zh-cn/guides/deploy/netlify.mdx index cb86c4bbadf7c..aee77371e314f 100644 --- a/src/content/docs/zh-cn/guides/deploy/netlify.mdx +++ b/src/content/docs/zh-cn/guides/deploy/netlify.mdx @@ -4,7 +4,7 @@ description: 如何使用 网站部署到网络上。Netlify 将你的 Astro 网 sidebar: label: Netlify type: deploy -service: Netlify +logo: netlify supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/zh-cn/guides/deploy/railway.mdx b/src/content/docs/zh-cn/guides/deploy/railway.mdx index 512829bb2fe81..f3ee32cbbf1ce 100644 --- a/src/content/docs/zh-cn/guides/deploy/railway.mdx +++ b/src/content/docs/zh-cn/guides/deploy/railway.mdx @@ -4,7 +4,7 @@ description: 如何使用 Railway Web 界面部署你的 Astro 站点。 sidebar: label: Railway type: deploy -service: Railway +logo: railway supports: ['ssr', 'static'] i18nReady: true stub: true @@ -56,4 +56,4 @@ Railway 的默认构建系统 [Railpack](https://docs.railway.com/reference/rail ## 社区资源 -[如何在 Railway 上托管 Astro 网站](https://jacksmith.xyz/blog/how-to-host-astro-site-on-railway) \ No newline at end of file +[如何在 Railway 上托管 Astro 网站](https://jacksmith.xyz/blog/how-to-host-astro-site-on-railway) diff --git a/src/content/docs/zh-cn/guides/deploy/render.mdx b/src/content/docs/zh-cn/guides/deploy/render.mdx index fdc546e99e625..9e19a6b86df6c 100644 --- a/src/content/docs/zh-cn/guides/deploy/render.mdx +++ b/src/content/docs/zh-cn/guides/deploy/render.mdx @@ -4,7 +4,7 @@ description: 如何将你的 Astro 网站通过 Render 部署上线。 sidebar: label: Render type: deploy -service: Render +logo: render supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/zh-cn/guides/deploy/stormkit.mdx b/src/content/docs/zh-cn/guides/deploy/stormkit.mdx index e8ef2f056f551..622583f5b7f34 100644 --- a/src/content/docs/zh-cn/guides/deploy/stormkit.mdx +++ b/src/content/docs/zh-cn/guides/deploy/stormkit.mdx @@ -4,7 +4,7 @@ description: 将你的 Astro 网站部署到 Stormkit sidebar: label: Stormkit type: deploy -service: Stormkit +logo: stormkit supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/zh-cn/guides/deploy/surge.mdx b/src/content/docs/zh-cn/guides/deploy/surge.mdx index 8d6728f55ce3a..5fa76df9a1a53 100644 --- a/src/content/docs/zh-cn/guides/deploy/surge.mdx +++ b/src/content/docs/zh-cn/guides/deploy/surge.mdx @@ -4,7 +4,7 @@ description: 如何将你的 Astro 网站通过 Surge 部署上线 sidebar: label: Surge type: deploy -service: Surge +logo: surge supports: ['static'] i18nReady: true --- diff --git a/src/content/docs/zh-cn/guides/deploy/vercel.mdx b/src/content/docs/zh-cn/guides/deploy/vercel.mdx index 35cb58e7ce048..677d383084d9f 100644 --- a/src/content/docs/zh-cn/guides/deploy/vercel.mdx +++ b/src/content/docs/zh-cn/guides/deploy/vercel.mdx @@ -3,7 +3,7 @@ title: 部署你的 Astro 站点至 Vercel description: 如何使用 Vercel 将你的 Astro 网站部署到网络上。 sidebar: label: Vercel -service: Vercel +logo: vercel supports: ['ssr', 'static'] i18nReady: true type: deploy diff --git a/src/content/docs/zh-cn/guides/deploy/zeabur.mdx b/src/content/docs/zh-cn/guides/deploy/zeabur.mdx index dadc3db31e8ca..8de127f9a2ca4 100644 --- a/src/content/docs/zh-cn/guides/deploy/zeabur.mdx +++ b/src/content/docs/zh-cn/guides/deploy/zeabur.mdx @@ -4,7 +4,7 @@ description: 如何将你的 Astro 站点部署到 Zeabur 的网络上。 sidebar: label: Zeabur type: deploy -service: Zeabur +logo: zeabur supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/zh-cn/guides/deploy/zerops.mdx b/src/content/docs/zh-cn/guides/deploy/zerops.mdx index fa149076df315..cff4ea4ec2c89 100644 --- a/src/content/docs/zh-cn/guides/deploy/zerops.mdx +++ b/src/content/docs/zh-cn/guides/deploy/zerops.mdx @@ -4,7 +4,7 @@ description: 如何使用 Zerops 将你的 Astro 网站部署到网络。 sidebar: label: Zerops type: deploy -service: Zerops +logo: zerops supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/zh-tw/guides/deploy/github.mdx b/src/content/docs/zh-tw/guides/deploy/github.mdx index efeea8f03661d..7d5ddcb7ecb3d 100644 --- a/src/content/docs/zh-tw/guides/deploy/github.mdx +++ b/src/content/docs/zh-tw/guides/deploy/github.mdx @@ -4,7 +4,7 @@ description: 如何透過 GitHub Pages 將 Astro 網站部署到網際網路上 sidebar: label: GitHub Pages type: deploy -service: GitHub Pages +logo: github supports: ['static'] i18nReady: true --- diff --git a/src/data/logos.ts b/src/data/logos.ts index 49fd3a836445a..38bf0098627bc 100644 --- a/src/data/logos.ts +++ b/src/data/logos.ts @@ -116,5 +116,5 @@ export const logos = LogoCheck({ }); export type LogoKey = keyof typeof logos; -const logoKeys = Object.keys(logos) as [LogoKey, ...LogoKey[]]; +export const logoKeys = Object.keys(logos) as [LogoKey, ...LogoKey[]]; export const isLogoKey = (val: string | undefined) => z.enum(logoKeys).parse(val); From 7a99a24a276e12cbb44e6ede8eaa7afef42681b7 Mon Sep 17 00:00:00 2001 From: Sarah Rainsberger <5098874+sarah11918@users.noreply.github.com> Date: Thu, 20 Nov 2025 13:21:44 -0400 Subject: [PATCH 21/24] Update _redirects --- public/_redirects | 3 +++ 1 file changed, 3 insertions(+) diff --git a/public/_redirects b/public/_redirects index e9bb707197995..e7be2915979b4 100644 --- a/public/_redirects +++ b/public/_redirects @@ -39,6 +39,9 @@ /:lang/reference/experimental-flags/svg/ /:lang/guides/images/ /:lang/reference/experimental-flags/serialized-configuration/ /:lang/reference/modules/astro-config/ /:lang/reference/experimental-flags/responsive-images/ /:lang/guides/images/ +/:lang/guides/deploy/sst/ /:lang/guides/deploy/aws-via-sst/ +/:lang/guides/deploy/flightcontrol/ /:lang/guides/deploy/aws-via-flightcontrol/ + # Very old docs site redirects From 810bbbc21c3bdf9b6a581c26ccb6f29f0f3bc447 Mon Sep 17 00:00:00 2001 From: sarahrainsberger Date: Thu, 20 Nov 2025 19:15:51 +0000 Subject: [PATCH 22/24] committing Firebase rename while I can, even though there might be errors --- .../de/guides/deploy/{google-firebase.mdx => firebase.mdx} | 4 ++-- src/content/docs/en/guides/backend/google-firebase.mdx | 2 +- .../en/guides/deploy/{google-firebase.mdx => firebase.mdx} | 4 ++-- src/content/docs/es/guides/backend/google-firebase.mdx | 2 +- src/content/docs/fr/guides/backend/google-firebase.mdx | 2 +- .../fr/guides/deploy/{google-firebase.mdx => firebase.mdx} | 4 ++-- src/content/docs/ja/guides/backend/google-firebase.mdx | 2 +- src/content/docs/ko/guides/backend/google-firebase.mdx | 2 +- .../ko/guides/deploy/{google-firebase.mdx => firebase.mdx} | 4 ++-- src/content/docs/zh-cn/guides/backend/google-firebase.mdx | 2 +- .../zh-cn/guides/deploy/{google-firebase.mdx => firebase.mdx} | 4 ++-- src/data/logos.ts | 1 + 12 files changed, 17 insertions(+), 16 deletions(-) rename src/content/docs/de/guides/deploy/{google-firebase.mdx => firebase.mdx} (98%) rename src/content/docs/en/guides/deploy/{google-firebase.mdx => firebase.mdx} (98%) rename src/content/docs/fr/guides/deploy/{google-firebase.mdx => firebase.mdx} (98%) rename src/content/docs/ko/guides/deploy/{google-firebase.mdx => firebase.mdx} (98%) rename src/content/docs/zh-cn/guides/deploy/{google-firebase.mdx => firebase.mdx} (98%) diff --git a/src/content/docs/de/guides/deploy/google-firebase.mdx b/src/content/docs/de/guides/deploy/firebase.mdx similarity index 98% rename from src/content/docs/de/guides/deploy/google-firebase.mdx rename to src/content/docs/de/guides/deploy/firebase.mdx index 95f253c0b80bf..cc66b9359b7d6 100644 --- a/src/content/docs/de/guides/deploy/google-firebase.mdx +++ b/src/content/docs/de/guides/deploy/firebase.mdx @@ -2,10 +2,10 @@ title: Veröffentliche deine Astro-Website auf Google's Firebase Hosting description: Wie du deine Astro-Website auf Firebase-Hosting von Google im Internet veröffentlichst. type: deploy -logo: google-firebase +logo: firebase supports: ['static', 'ssr'] sidebar: - label: Firebase Hosting + label: Firebase i18nReady: true --- diff --git a/src/content/docs/en/guides/backend/google-firebase.mdx b/src/content/docs/en/guides/backend/google-firebase.mdx index 50316c02b61d1..0d0eb3b9fe530 100644 --- a/src/content/docs/en/guides/backend/google-firebase.mdx +++ b/src/content/docs/en/guides/backend/google-firebase.mdx @@ -14,7 +14,7 @@ import { FileTree } from '@astrojs/starlight/components'; [Firebase](https://firebase.google.com/) is an app development platform that provides a NoSQL database, authentication, realtime subscriptions, functions, and storage. -See our separate guide for [deploying to Firebase hosting](/en/guides/deploy/google-firebase/). +See our separate guide for [deploying to Firebase hosting](/en/guides/deploy/firebase/). ## Initializing Firebase in Astro diff --git a/src/content/docs/en/guides/deploy/google-firebase.mdx b/src/content/docs/en/guides/deploy/firebase.mdx similarity index 98% rename from src/content/docs/en/guides/deploy/google-firebase.mdx rename to src/content/docs/en/guides/deploy/firebase.mdx index 114932e5ac983..d9392bb7d4c9a 100644 --- a/src/content/docs/en/guides/deploy/google-firebase.mdx +++ b/src/content/docs/en/guides/deploy/firebase.mdx @@ -2,9 +2,9 @@ title: Deploy your Astro Site to Google’s Firebase Hosting description: How to deploy your Astro site to the web using Google’s Firebase Hosting. sidebar: - label: Google Firebase + label: Firebase type: deploy -logo: google-firebase +logo: firebase supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/es/guides/backend/google-firebase.mdx b/src/content/docs/es/guides/backend/google-firebase.mdx index 28fd9ba58265c..be2e4333daa44 100644 --- a/src/content/docs/es/guides/backend/google-firebase.mdx +++ b/src/content/docs/es/guides/backend/google-firebase.mdx @@ -14,7 +14,7 @@ import { FileTree } from '@astrojs/starlight/components'; [Firebase](https://firebase.google.com/) es una plataforma de desarrollo de aplicaciones que proporciona una base de datos NoSQL, autenticación, suscripciones en tiempo real, funciones y almacenamiento. -Consulta nuestra guía independiente para [desplegar en Firebase Hosting](/es/guides/deploy/google-firebase/). +Consulta nuestra guía independiente para [desplegar en Firebase Hosting](/es/guides/deploy/firebase/). ## Inicializando Firebase en Astro diff --git a/src/content/docs/fr/guides/backend/google-firebase.mdx b/src/content/docs/fr/guides/backend/google-firebase.mdx index f0fec912abf0f..fa32f0162ed09 100644 --- a/src/content/docs/fr/guides/backend/google-firebase.mdx +++ b/src/content/docs/fr/guides/backend/google-firebase.mdx @@ -14,7 +14,7 @@ import { FileTree } from '@astrojs/starlight/components'; [Firebase](https://firebase.google.com/) est une plate-forme de développement d'applications qui fournit une base de données NoSQL, une authentification, des souscriptions en temps réel, des fonctions et un stockage. -Consultez notre guide dédié au [déploiement sur Firebase hosting](/fr/guides/deploy/google-firebase/). +Consultez notre guide dédié au [déploiement sur Firebase hosting](/fr/guides/deploy/firebase/). ## Initialisation de Firebase dans Astro diff --git a/src/content/docs/fr/guides/deploy/google-firebase.mdx b/src/content/docs/fr/guides/deploy/firebase.mdx similarity index 98% rename from src/content/docs/fr/guides/deploy/google-firebase.mdx rename to src/content/docs/fr/guides/deploy/firebase.mdx index ff484abd15349..7b43026709d6d 100644 --- a/src/content/docs/fr/guides/deploy/google-firebase.mdx +++ b/src/content/docs/fr/guides/deploy/firebase.mdx @@ -2,9 +2,9 @@ title: Déployer votre site Astro sur l'hébergement Firebase de Google description: Comment déployer votre site Astro sur le web en utilisant l'hébergement Firebase de Google. sidebar: - label: Google Firebase + label: Firebase type: deploy -logo: google-firebase +logo: firebase supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/ja/guides/backend/google-firebase.mdx b/src/content/docs/ja/guides/backend/google-firebase.mdx index d43ef1e372a98..e7760d54437ed 100644 --- a/src/content/docs/ja/guides/backend/google-firebase.mdx +++ b/src/content/docs/ja/guides/backend/google-firebase.mdx @@ -14,7 +14,7 @@ import { FileTree } from '@astrojs/starlight/components'; [Firebase](https://firebase.google.com/) は、NoSQLデータベース、認証、リアルタイムサブスクリプション、functions、ストレージを提供するアプリ開発プラットフォームです。 -[Firebaseホスティングへのデプロイ](/ja/guides/deploy/google-firebase/)に関する別のガイドをご覧ください。 +[Firebaseホスティングへのデプロイ](/ja/guides/deploy/firebase/)に関する別のガイドをご覧ください。 ## AstroでFirebaseを初期化する diff --git a/src/content/docs/ko/guides/backend/google-firebase.mdx b/src/content/docs/ko/guides/backend/google-firebase.mdx index a4054097e16e0..142de3a8e975a 100644 --- a/src/content/docs/ko/guides/backend/google-firebase.mdx +++ b/src/content/docs/ko/guides/backend/google-firebase.mdx @@ -14,7 +14,7 @@ import { FileTree } from '@astrojs/starlight/components'; [Firebase](https://firebase.google.com/)는 NoSQL 데이터베이스, 인증, 실시간 구독, 함수, 스토리지를 제공하는 앱 개발 플랫폼입니다. -[Firebase hosting에 배포](/ko/guides/deploy/google-firebase/)에 대한 별도의 가이드를 참조하세요. +[Firebase hosting에 배포](/ko/guides/deploy/firebase/)에 대한 별도의 가이드를 참조하세요. ## Astro에서 Firebase 초기화 diff --git a/src/content/docs/ko/guides/deploy/google-firebase.mdx b/src/content/docs/ko/guides/deploy/firebase.mdx similarity index 98% rename from src/content/docs/ko/guides/deploy/google-firebase.mdx rename to src/content/docs/ko/guides/deploy/firebase.mdx index 91a8895599481..b85d3d584c6c2 100644 --- a/src/content/docs/ko/guides/deploy/google-firebase.mdx +++ b/src/content/docs/ko/guides/deploy/firebase.mdx @@ -2,9 +2,9 @@ title: Astro 사이트를 Google의 Firebase Hosting에 배포하세요 description: Google의 Firebase Hosting을 사용하여 Astro 사이트를 웹에 배포하는 방법. sidebar: - label: Google Firebase + label: Firebase type: deploy -logo: google-firebase +logo: firebase supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/content/docs/zh-cn/guides/backend/google-firebase.mdx b/src/content/docs/zh-cn/guides/backend/google-firebase.mdx index 072d5bac348f2..6a17afcf3df7a 100644 --- a/src/content/docs/zh-cn/guides/backend/google-firebase.mdx +++ b/src/content/docs/zh-cn/guides/backend/google-firebase.mdx @@ -13,7 +13,7 @@ import { FileTree } from '@astrojs/starlight/components'; [Firebase](https://firebase.google.com/) 是一个应用开发平台,它提供了 NoSQL 数据库、身份验证、实时订阅、云函数和存储等功能。 -如有必要的话请移步我们专门的指南,了解[如何部署到 Firebase 托管](/zh-cn/guides/deploy/google-firebase/) +如有必要的话请移步我们专门的指南,了解[如何部署到 Firebase 托管](/zh-cn/guides/deploy/firebase/) ## 在 Astro 中初始化 Firebase diff --git a/src/content/docs/zh-cn/guides/deploy/google-firebase.mdx b/src/content/docs/zh-cn/guides/deploy/firebase.mdx similarity index 98% rename from src/content/docs/zh-cn/guides/deploy/google-firebase.mdx rename to src/content/docs/zh-cn/guides/deploy/firebase.mdx index d3ff03747777b..aa439d78f9ae5 100644 --- a/src/content/docs/zh-cn/guides/deploy/google-firebase.mdx +++ b/src/content/docs/zh-cn/guides/deploy/firebase.mdx @@ -2,9 +2,9 @@ title: 部署你的 Astro 站点至 Google Firebase 托管 description: 了解如何将你的 Astro 网页部署到 Google Firebase。 sidebar: - label: Google Firebase + label: Firebase type: deploy -logo: google-firebase +logo: firebase supports: ['ssr', 'static'] i18nReady: true --- diff --git a/src/data/logos.ts b/src/data/logos.ts index 38bf0098627bc..107970afb4b1c 100644 --- a/src/data/logos.ts +++ b/src/data/logos.ts @@ -26,6 +26,7 @@ export const logos = LogoCheck({ github: { file: 'github.svg', padding: '0.125em 0.125em 0.1375em' }, gitlab: { file: 'gitlab.svg', padding: '0' }, 'google-cloud': { file: 'google-cloud.svg', padding: '.1875em' }, + firebase: { file: 'firebase.svg', padding: '.1875em' }, 'google-firebase': { file: 'firebase.svg', padding: '.1875em' }, hashnode: { file: 'hashnode.png', padding: '.1875em' }, heroku: { file: 'heroku.svg', padding: '.25em' }, From 2a094cfca03775a15feb3df174b16779652ea67d Mon Sep 17 00:00:00 2001 From: Sarah Rainsberger <5098874+sarah11918@users.noreply.github.com> Date: Thu, 20 Nov 2025 15:31:43 -0400 Subject: [PATCH 23/24] add Firebase to redirects --- public/_redirects | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/_redirects b/public/_redirects index e7be2915979b4..0414698d50b7f 100644 --- a/public/_redirects +++ b/public/_redirects @@ -41,7 +41,7 @@ /:lang/reference/experimental-flags/responsive-images/ /:lang/guides/images/ /:lang/guides/deploy/sst/ /:lang/guides/deploy/aws-via-sst/ /:lang/guides/deploy/flightcontrol/ /:lang/guides/deploy/aws-via-flightcontrol/ - +/:lang/guides/deploy/google-firebase/ /:lang/guides/deploy/firebase/ # Very old docs site redirects From cc3f8f95423c95c080a85e0188638bd6182aa283 Mon Sep 17 00:00:00 2001 From: Sarah Rainsberger <5098874+sarah11918@users.noreply.github.com> Date: Mon, 24 Nov 2025 14:03:17 -0400 Subject: [PATCH 24/24] convert new Seenode translation to new format --- src/content/docs/zh-cn/guides/deploy/seenode.mdx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/content/docs/zh-cn/guides/deploy/seenode.mdx b/src/content/docs/zh-cn/guides/deploy/seenode.mdx index f2bff0cf80854..8fc3d1b614edc 100644 --- a/src/content/docs/zh-cn/guides/deploy/seenode.mdx +++ b/src/content/docs/zh-cn/guides/deploy/seenode.mdx @@ -4,6 +4,8 @@ description: 如何在 Seenode 上将你的 Astro 网站部署到网上。 sidebar: label: Seenode type: deploy +logo: seenode +supports: ['ssr'] i18nReady: true --- import { Steps } from '@astrojs/starlight/components'; @@ -99,4 +101,4 @@ export default defineConfig({ - [Seenode Cloud](https://cloud.seenode.com) — Seenode 控制面板 - [Seenode 文档](https://seenode.com/docs) — 完整的平台文档 - [Seenode Astro 指南](https://seenode.com/docs/frameworks/javascript/astro/) — 详细的部署指南和故障排除说明 -- [Seenode Astro 模板](https://github.com/seenode/example-astro) — 预配置的启动模板 \ No newline at end of file +- [Seenode Astro 模板](https://github.com/seenode/example-astro) — 预配置的启动模板