mirror of
https://github.com/vitejs/vite.git
synced 2024-11-22 07:09:05 +00:00
chore(reporter): remove unnecessary map (#13972)
This commit is contained in:
parent
89a3db0d9f
commit
dd9d4c1320
@ -137,13 +137,11 @@ export function buildReporterPlugin(config: ResolvedConfig): Plugin {
|
||||
this.warn(
|
||||
`\n(!) ${
|
||||
module.id
|
||||
} is dynamically imported by ${module.dynamicImporters
|
||||
.map((m) => m)
|
||||
.join(', ')} but also statically imported by ${module.importers
|
||||
.map((m) => m)
|
||||
.join(
|
||||
', ',
|
||||
)}, dynamic import will not move module into another chunk.\n`,
|
||||
} is dynamically imported by ${module.dynamicImporters.join(
|
||||
', ',
|
||||
)} but also statically imported by ${module.importers.join(
|
||||
', ',
|
||||
)}, dynamic import will not move module into another chunk.\n`,
|
||||
)
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user