docs: add ios16.4 to the documented baseline-widely-available target by DucMinhNe · Pull Request #22600 · vitejs/vite (original) (raw)

Description

The documented default for build.target lists the resolved 'baseline-widely-available' value as a 4-entry array, but the actual source constant is a 5-entry array — it's missing 'ios16.4'.

In packages/vite/src/node/constants.ts, ESBUILD_BASELINE_WIDELY_AVAILABLE_TARGET is:

['chrome111', 'edge111', 'firefox114', 'safari16.4', 'ios16.4']

'ios16.4' was added in #21342 ("feat: add ios to default esbuild targets") but the docs list in docs/config/build-options.md was never updated, so it still shows 4 entries. This aligns the documented default with the actual build behavior.

Docs-only, one token.