diff options
author | 2023-10-10 09:16:32 +0200 | |
---|---|---|
committer | 2023-10-10 09:16:32 +0200 | |
commit | 8dd1d4d60bb482cea220be57fe4365611dcd283e (patch) | |
tree | 31a65f4b92507190d10bc0db82b966fab13fcee8 /packages/integrations/cloudflare/src | |
parent | 2f174ec5cb45904b019b5c93ad1440079a1ce8f3 (diff) | |
download | astro-8dd1d4d60bb482cea220be57fe4365611dcd283e.tar.gz astro-8dd1d4d60bb482cea220be57fe4365611dcd283e.tar.zst astro-8dd1d4d60bb482cea220be57fe4365611dcd283e.zip |
fix(cloudflare): esbuild settings for cloudflare (#8788)
---------
Co-authored-by: Jonathan Dunlap <595843+jadbox@users.noreply.github.com>
Diffstat (limited to 'packages/integrations/cloudflare/src')
-rw-r--r-- | packages/integrations/cloudflare/src/index.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/integrations/cloudflare/src/index.ts b/packages/integrations/cloudflare/src/index.ts index c0af8eb14..36da696bb 100644 --- a/packages/integrations/cloudflare/src/index.ts +++ b/packages/integrations/cloudflare/src/index.ts @@ -283,6 +283,7 @@ export default function createIntegration(args?: Options): AstroIntegration { 'node:assert', 'node:async_hooks', 'node:buffer', + 'node:crypto', 'node:diagnostics_channel', 'node:events', 'node:path', @@ -365,6 +366,7 @@ export default function createIntegration(args?: Options): AstroIntegration { 'node:assert', 'node:async_hooks', 'node:buffer', + 'node:crypto', 'node:diagnostics_channel', 'node:events', 'node:path', |