Skip to content

Commit 76e7f0e

Browse files
committed
chore: update warn msg
1 parent 370b604 commit 76e7f0e

File tree

1 file changed

+1
-1
lines changed
  • packages/qwik/src/optimizer/src/plugins

1 file changed

+1
-1
lines changed

packages/qwik/src/optimizer/src/plugins/rollup.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ export async function normalizeRollupOutputOptionsObject(
275275
outputOpts.onlyExplicitManualChunks = true;
276276
} else {
277277
console.warn(
278-
`⚠️ We detected that you're using a Rollup version prior to 4.52.0 directly in your project (${version}). For the latest and greatest, we recommend to remove it and let Vite install the latest version for you. It will enable the new Rollup \`outputOpts.onlyExplicitManualChunks\` feature flag, which improves preloading performance and reduces cache invalidation for a snappier user experience.`
278+
`⚠️ We detected that you're using a Rollup version prior to 4.52.0 (${version}). For the latest and greatest, we recommend to let Vite install the latest version for you, or manually install the latest version of Rollup in your project if that doesn't work. It will enable the new Rollup \`outputOpts.onlyExplicitManualChunks\` feature flag, which improves preloading performance and reduces cache invalidation for a snappier user experience.`
279279
);
280280
}
281281
} catch {

0 commit comments

Comments
 (0)