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 9748fcf commit 30c86acCopy full SHA for 30c86ac
packages/open-next/src/build/copyTracedFiles.ts
@@ -198,7 +198,10 @@ File ${fullFilePath} does not exist
198
//TODO: we need to figure which packages we could safely remove
199
from.includes(path.join("node_modules", "caniuse-lite")) ||
200
// from.includes("jest-worker") || This ones seems necessary for next 12
201
- from.includes(path.join("node_modules", "sharp"))
+ from.includes(path.join("node_modules", "sharp")) ||
202
+ // This seems to be only in Next 15
203
+ // Some of sharp deps are under the @img scope
204
+ from.includes(path.join("node_modules", "@img"))
205
) {
206
return;
207
}
0 commit comments