diff options
author | 2023-08-17 21:53:48 +0000 | |
---|---|---|
committer | 2023-08-17 21:53:48 +0000 | |
commit | c7de971b10884ce788a1af98618a14d689576e1f (patch) | |
tree | b8c34a1c3fa9e86d0fa775de95cdffd9ee6807cb | |
parent | 1f6497c3341231ee76fc4538cfe7624cf4721d56 (diff) | |
download | astro-c7de971b10884ce788a1af98618a14d689576e1f.tar.gz astro-c7de971b10884ce788a1af98618a14d689576e1f.tar.zst astro-c7de971b10884ce788a1af98618a14d689576e1f.zip |
[ci] format
-rw-r--r-- | packages/astro/src/core/dev/container.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/astro/src/core/dev/container.ts b/packages/astro/src/core/dev/container.ts index b48d4c7b5..a2c6d5dc8 100644 --- a/packages/astro/src/core/dev/container.ts +++ b/packages/astro/src/core/dev/container.ts @@ -56,7 +56,10 @@ export async function createContainer({ settings = injectImageEndpoint(settings); } - const { base, server: { host, headers, open: shouldOpen }} = settings.config; + const { + base, + server: { host, headers, open: shouldOpen }, + } = settings.config; // Open server to the correct path const open = shouldOpen ? base : false; |