From 47c3580ec64958652eb218deb6e42ea5f40cb28d Mon Sep 17 00:00:00 2001 From: Robert Soriano Date: Thu, 30 Jan 2025 08:53:45 -0800 Subject: [PATCH] docs: fix new experimental serialized config option name (#10842) --- .../reference/experimental-flags/serialized-configuration.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/content/docs/en/reference/experimental-flags/serialized-configuration.mdx b/src/content/docs/en/reference/experimental-flags/serialized-configuration.mdx index e06140b5a99f5..31039faabb8f0 100644 --- a/src/content/docs/en/reference/experimental-flags/serialized-configuration.mdx +++ b/src/content/docs/en/reference/experimental-flags/serialized-configuration.mdx @@ -19,13 +19,13 @@ This feature allows access to the `astro:config` virtual module which exposes a For a complete overview, and to give feedback on this experimental API, see the [Serialized Manifest RFC](https://github.com/withastro/roadmap/blob/feat/serialised-config/proposals/0051-serialized-manifest.md). -To enable this virtual module, add the `experimental.serializeManifest` feature flag to your Astro config: +To enable this virtual module, add the `experimental.serializeConfig` feature flag to your Astro config: ```js title="astro.config.mjs" ins={3-5} import {defineConfig} from "astro/config" export default defineConfig({ experimental: { - serializeManifest: true + serializeConfig: true } }) ```