We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
vitejs
Learn more about funding links in repositories.
Report abuse
1 parent 5ea70b3 commit 5844d8eCopy full SHA for 5844d8e
packages/vite/src/node/ssr/ssrExternal.ts
@@ -120,13 +120,17 @@ export function createIsConfiguredAsSsrExternal(
120
return (id: string) => {
121
const { ssr } = config
122
if (ssr) {
123
- if (ssr.external?.includes(id)) {
+ const pkgName = getNpmPackageName(id)
124
+ if (!pkgName) {
125
+ return undefined
126
+ }
127
+ if (ssr.external?.includes(pkgName)) {
128
return true
129
}
130
if (typeof noExternal === 'boolean') {
131
return !noExternal
132
- if (noExternalFilter && !noExternalFilter(id)) {
133
+ if (noExternalFilter && !noExternalFilter(pkgName)) {
134
return false
135
136
0 commit comments