Skip to content

Commit 5844d8e

Browse files
authoredJul 15, 2022
fix: ssr.external/noExternal should apply to packageName (#9146)
1 parent 5ea70b3 commit 5844d8e

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed
 

‎packages/vite/src/node/ssr/ssrExternal.ts

+6-2
Original file line numberDiff line numberDiff line change
@@ -120,13 +120,17 @@ export function createIsConfiguredAsSsrExternal(
120120
return (id: string) => {
121121
const { ssr } = config
122122
if (ssr) {
123-
if (ssr.external?.includes(id)) {
123+
const pkgName = getNpmPackageName(id)
124+
if (!pkgName) {
125+
return undefined
126+
}
127+
if (ssr.external?.includes(pkgName)) {
124128
return true
125129
}
126130
if (typeof noExternal === 'boolean') {
127131
return !noExternal
128132
}
129-
if (noExternalFilter && !noExternalFilter(id)) {
133+
if (noExternalFilter && !noExternalFilter(pkgName)) {
130134
return false
131135
}
132136
}

0 commit comments

Comments
 (0)
Please sign in to comment.