summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorGravatar Florian Lefebvre <contact@florian-lefebvre.dev> 2024-08-15 16:52:26 +0200
committerGravatar GitHub <noreply@github.com> 2024-08-15 16:52:26 +0200
commitc84f5933ffff15cba22ff8b55168c16431eb47ce (patch)
tree8bd10e13b6469c308ef90c68162f98145e9c5602 /packages
parent48322519b6c0f298e1256edf1135eaedc4fe6409 (diff)
downloadastro-c84f5933ffff15cba22ff8b55168c16431eb47ce.tar.gz
astro-c84f5933ffff15cba22ff8b55168c16431eb47ce.tar.zst
astro-c84f5933ffff15cba22ff8b55168c16431eb47ce.zip
refactor: enforce node prefix (#11723)
Diffstat (limited to 'packages')
-rw-r--r--packages/integrations/node/src/standalone.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/integrations/node/src/standalone.ts b/packages/integrations/node/src/standalone.ts
index 817ca7020..69db5ef23 100644
--- a/packages/integrations/node/src/standalone.ts
+++ b/packages/integrations/node/src/standalone.ts
@@ -1,4 +1,4 @@
-import https from 'https';
+import https from 'node:https';
import fs from 'node:fs';
import http from 'node:http';
import type { PreviewServer } from 'astro';