diff options
author | 2022-10-12 21:27:56 +0000 | |
---|---|---|
committer | 2022-10-12 21:27:56 +0000 | |
commit | 575bf9205e7b5875c6b95d49339ff448f59eaad4 (patch) | |
tree | 5e14d483fea818032722fbe8a8ac06944a41a337 /packages/integrations/cloudflare/src/index.ts | |
parent | e55af8a23233b6335f45b7a04b9d026990fb616c (diff) | |
download | astro-575bf9205e7b5875c6b95d49339ff448f59eaad4.tar.gz astro-575bf9205e7b5875c6b95d49339ff448f59eaad4.tar.zst astro-575bf9205e7b5875c6b95d49339ff448f59eaad4.zip |
[ci] format
Diffstat (limited to 'packages/integrations/cloudflare/src/index.ts')
-rw-r--r-- | packages/integrations/cloudflare/src/index.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/integrations/cloudflare/src/index.ts b/packages/integrations/cloudflare/src/index.ts index 9cf6412b8..44112e8be 100644 --- a/packages/integrations/cloudflare/src/index.ts +++ b/packages/integrations/cloudflare/src/index.ts @@ -48,7 +48,7 @@ export default function createIntegration(args?: Options): AstroIntegration { client: new URL('./static/', config.outDir), server: new URL('./', config.outDir), serverEntry: '_worker.js', - } + }, }); }, 'astro:config:done': ({ setAdapter, config }) => { @@ -83,7 +83,7 @@ export default function createIntegration(args?: Options): AstroIntegration { }, 'astro:build:start': ({ buildConfig }) => { // Backwards compat - if(needsBuildConfig) { + if (needsBuildConfig) { buildConfig.client = new URL('./static/', _config.outDir); buildConfig.server = new URL('./', _config.outDir); buildConfig.serverEntry = '_worker.js'; |