diff options
author | 2024-08-15 16:52:26 +0200 | |
---|---|---|
committer | 2024-08-15 16:52:26 +0200 | |
commit | c84f5933ffff15cba22ff8b55168c16431eb47ce (patch) | |
tree | 8bd10e13b6469c308ef90c68162f98145e9c5602 /packages | |
parent | 48322519b6c0f298e1256edf1135eaedc4fe6409 (diff) | |
download | astro-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.ts | 2 |
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'; |