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 89a3db0 commit dd9d4c1Copy full SHA for dd9d4c1
packages/vite/src/node/plugins/reporter.ts
@@ -137,13 +137,11 @@ export function buildReporterPlugin(config: ResolvedConfig): Plugin {
137
this.warn(
138
`\n(!) ${
139
module.id
140
- } is dynamically imported by ${module.dynamicImporters
141
- .map((m) => m)
142
- .join(', ')} but also statically imported by ${module.importers
143
144
- .join(
145
- ', ',
146
- )}, 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`,
147
)
148
}
149
0 commit comments