0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-30 22:03:56 -05:00

doc: Add better documentation to the serverIslandDynamicBase config option

This commit is contained in:
Jacob Roberts 2024-11-25 21:38:58 +00:00
parent 03b145bf2d
commit 593cc7772e

View file

@ -1978,6 +1978,11 @@ export interface AstroConfig extends AstroConfigType {
// Private:
// This is not configurable directly by the user. But may be configured by an integration.
//
// Setting this option will change the base path to deploy server islands to.
// This changes the path of any server islands that are emitted in the client HTML.
// If this is unset, this will fallback to the user supplied `base` config option, and if that is unset,
// then a relative URL will be used (ie: `/_server-islands/`).
serverIslandDynamicBase?: string;
}
/**