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 a19a57a commit 281ae80Copy full SHA for 281ae80
.changeset/dirty-rats-switch.md
@@ -0,0 +1,5 @@
1
+---
2
+'@sveltejs/adapter-netlify': patch
3
4
+
5
+fix: include remote functions when deploying to Netlify edge functions
packages/adapter-netlify/index.js
@@ -159,7 +159,8 @@ async function generate_edge_functions({ builder }) {
159
// Netlify will handle the optional trailing slash for us
160
const excluded = [
161
// Contains static files
162
- `/${builder.getAppPath()}/*`,
+ `/${builder.getAppPath()}/immutable/*`,
163
+ `/${builder.getAppPath()}/version.json`,
164
...builder.prerendered.paths,
165
...Array.from(assets).flatMap((asset) => {
166
if (asset.endsWith('/index.html')) {
0 commit comments