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:
parent
03b145bf2d
commit
593cc7772e
1 changed files with 5 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue