Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions packages/vite/src/node/plugins/importAnalysis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -509,9 +509,11 @@ export function importAnalysisPlugin(config: ResolvedConfig): Plugin {
// static import or valid string in dynamic import
// If resolvable, let's resolve it
if (specifier !== undefined) {
// skip external / data uri
// skip external / data uri, but allow if it matches an alias
if (
(isExternalUrl(specifier) && !specifier.startsWith('file://')) ||
(isExternalUrl(specifier) &&
!specifier.startsWith('file://') &&
!matchAlias(specifier)) ||
isDataUrl(specifier)
) {
return
Expand Down
Loading