From 641e725ac7e8dbfdca96ec06a0985e0893066e86 Mon Sep 17 00:00:00 2001 From: patak Date: Mon, 17 Jan 2022 15:16:59 +0100 Subject: [PATCH] chore: fix typo Co-authored-by: Ben McCann <322311+benmccann@users.noreply.github.com> --- packages/vite/src/node/plugins/splitVendorChunk.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/vite/src/node/plugins/splitVendorChunk.ts b/packages/vite/src/node/plugins/splitVendorChunk.ts index 9e8958f4620372..b4125717737efa 100644 --- a/packages/vite/src/node/plugins/splitVendorChunk.ts +++ b/packages/vite/src/node/plugins/splitVendorChunk.ts @@ -3,7 +3,7 @@ import type { OutputOptions, GetManualChunk, GetModuleInfo } from 'rollup' import { isCSSRequest } from './css' // Use splitVendorChunkPlugin() to get the same manualChunks strategy as Vite 2.7 -// We don't recomment using this strategy as a general solution moving forward +// We don't recommend using this strategy as a general solution moving forward // splitVendorChunk is a simple index/vendor strategy that was used in Vite // until v2.8. It is exposed to let people continue to use it in case it was