We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29f3024 commit 7036b05Copy full SHA for 7036b05
.changeset/fine-needles-send.md
@@ -0,0 +1,5 @@
1
+---
2
+'@astrojs/netlify': patch
3
4
+
5
+Fixes an issue where the adapter didn't take into consideration the `outDir` configuration.
packages/integrations/netlify/src/index.ts
@@ -515,7 +515,7 @@ export default function netlifyIntegration(
515
rootDir = config.root;
516
await cleanFunctions();
517
518
- outDir = new URL('./dist/', rootDir);
+ outDir = new URL(config.outDir, rootDir);
519
520
const enableImageCDN = isRunningInNetlify && (integrationConfig?.imageCDN ?? true);
521
0 commit comments