summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Matthew Phillips <matthewp@users.noreply.github.com> 2024-06-14 20:30:45 +0000
committerGravatar astrobot-houston <fred+astrobot@astro.build> 2024-06-14 20:30:45 +0000
commit1296cb9b1a50aa9b6e21db9551829922a63cf953 (patch)
tree5e5e9114b9ca15d21a73f9bb19cbe8f86ceba1c8
parentf5f8ed275b76adfb11b7c3c1e800753a25416498 (diff)
downloadastro-1296cb9b1a50aa9b6e21db9551829922a63cf953.tar.gz
astro-1296cb9b1a50aa9b6e21db9551829922a63cf953.tar.zst
astro-1296cb9b1a50aa9b6e21db9551829922a63cf953.zip
[ci] format
-rw-r--r--packages/integrations/node/src/server.ts2
-rw-r--r--packages/integrations/vercel/src/serverless/entrypoint.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/packages/integrations/node/src/server.ts b/packages/integrations/node/src/server.ts
index e79c0761a..febace938 100644
--- a/packages/integrations/node/src/server.ts
+++ b/packages/integrations/node/src/server.ts
@@ -10,7 +10,7 @@ type EnvSetupModule = typeof import('astro/env/setup');
// Won't throw if the virtual module is not available because it's not supported in
// the users's astro version or if astro:env is not enabled in the project
const setupModule = 'astro/env/setup';
-await import(/* @vite-ignore */setupModule)
+await import(/* @vite-ignore */ setupModule)
.then((mod: EnvSetupModule) => mod.setGetEnv((key) => process.env[key]))
.catch(() => {});
diff --git a/packages/integrations/vercel/src/serverless/entrypoint.ts b/packages/integrations/vercel/src/serverless/entrypoint.ts
index ee1e1bc99..1e0b75d64 100644
--- a/packages/integrations/vercel/src/serverless/entrypoint.ts
+++ b/packages/integrations/vercel/src/serverless/entrypoint.ts
@@ -13,7 +13,7 @@ type EnvSetupModule = typeof import('astro/env/setup');
// Won't throw if the virtual module is not available because it's not supported in
// the users's astro version or if astro:env is not enabled in the project
const setupModule = 'astro/env/setup';
-await import(/* @vite-ignore */setupModule)
+await import(/* @vite-ignore */ setupModule)
.then((mod: EnvSetupModule) => mod.setGetEnv((key) => process.env[key]))
.catch(() => {});