From 0258ef00694a3087307431a493a01a3bae686f9c Mon Sep 17 00:00:00 2001 From: baseballyama Date: Mon, 20 May 2024 10:21:10 +0900 Subject: [PATCH] fix --- packages/vite/src/node/plugins/splitVendorChunk.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/vite/src/node/plugins/splitVendorChunk.ts b/packages/vite/src/node/plugins/splitVendorChunk.ts index f75512e9c986c0..39a50a02dbf28f 100644 --- a/packages/vite/src/node/plugins/splitVendorChunk.ts +++ b/packages/vite/src/node/plugins/splitVendorChunk.ts @@ -27,7 +27,7 @@ export const isCSSRequest = (request: string): boolean => // Don't use this manualChunks strategy for ssr, lib mode, and 'umd' or 'iife' /** - * @deprecated use build.rollupOutput.manualChunks or framework specific configuration + * @deprecated use build.rollupOptions.output.manualChunks or framework specific configuration */ export class SplitVendorChunkCache { cache: Map @@ -40,7 +40,7 @@ export class SplitVendorChunkCache { } /** - * @deprecated use build.rollupOutput.manualChunks or framework specific configuration + * @deprecated use build.rollupOptions.output.manualChunks or framework specific configuration */ export function splitVendorChunk( options: { cache?: SplitVendorChunkCache } = {}, @@ -94,7 +94,7 @@ function staticImportedByEntry( } /** - * @deprecated use build.rollupOutput.manualChunks or framework specific configuration + * @deprecated use build.rollupOptions.output.manualChunks or framework specific configuration */ export function splitVendorChunkPlugin(): Plugin { const caches: SplitVendorChunkCache[] = []