Skip to content

Commit

Permalink
fix: Special handling for ssr.noExternal in mergeConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
frandiox committed Aug 27, 2021
1 parent d891641 commit 029442b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/vite/src/node/config.ts
Expand Up @@ -649,6 +649,8 @@ function mergeConfigRecursively(
} else if (key === 'assetsInclude' && rootPath === '') {
merged[key] = [].concat(existing, value)
continue
} else if (key === 'noExternal' && existing === true) {
continue
}
}

Expand Down

0 comments on commit 029442b

Please sign in to comment.