From feef0354dca06a08b2f3abef3405cfca99d730f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=BF=A0=20/=20green?= Date: Sun, 14 May 2023 02:40:15 +0900 Subject: [PATCH] docs: tweak `build.cssCodeSplit` documentation (#13194) --- docs/config/build-options.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/config/build-options.md b/docs/config/build-options.md index ff4dbbd50e3bbf..22306a7eabcc3b 100644 --- a/docs/config/build-options.md +++ b/docs/config/build-options.md @@ -98,7 +98,7 @@ If you specify `build.lib`, `build.assetsInlineLimit` will be ignored and assets - **Type:** `boolean` - **Default:** `true` -Enable/disable CSS code splitting. When enabled, CSS imported in async chunks will be inlined into the async chunk itself and inserted when the chunk is loaded. +Enable/disable CSS code splitting. When enabled, CSS imported in async JS chunks will be preserved as chunks and fetched together when the chunk is fetched. If disabled, all CSS in the entire project will be extracted into a single CSS file.