Skip to content

Commit 378fbed

Browse files
authored
docs: feedback about experimental features (#13846)
1 parent 91bbbee commit 378fbed

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

docs/config/build-options.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The polyfill can be disabled using `{ polyfill: false }`.
3434

3535
The list of chunks to preload for each dynamic import is computed by Vite. By default, an absolute path including the `base` will be used when loading these dependencies. If the `base` is relative (`''` or `'./'`), `import.meta.url` is used at runtime to avoid absolute paths that depend on the final deployed base.
3636

37-
There is experimental support for fine grained control over the dependencies list and their paths using the `resolveDependencies` function. It expects a function of type `ResolveModulePreloadDependenciesFn`:
37+
There is experimental support for fine grained control over the dependencies list and their paths using the `resolveDependencies` function. [Give Feedback](https://github.com/vitejs/vite/discussions/13841). It expects a function of type `ResolveModulePreloadDependenciesFn`:
3838

3939
```ts
4040
type ResolveModulePreloadDependenciesFn = (
@@ -218,7 +218,7 @@ By default, Vite will empty the `outDir` on build if it is inside project root.
218218
219219
## build.copyPublicDir
220220
221-
- **Experimental**
221+
- **Experimental:** [Give feedback](https://github.com/vitejs/vite/discussions/13807)
222222
- **Type:** `boolean`
223223
- **Default:** `true`
224224

docs/config/dep-optimization-options.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Set to `true` to force dependency pre-bundling, ignoring previously cached optim
6464

6565
## optimizeDeps.disabled
6666

67-
- **Experimental**
67+
- **Experimental:** [Give Feedback](https://github.com/vitejs/vite/discussions/13839)
6868
- **Type:** `boolean | 'build' | 'dev'`
6969
- **Default:** `'build'`
7070

docs/config/shared-options.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -260,23 +260,23 @@ export default defineConfig({
260260

261261
## css.devSourcemap
262262

263-
- **Experimental**
263+
- **Experimental:** [Give Feedback](https://github.com/vitejs/vite/discussions/13845)
264264
- **Type:** `boolean`
265265
- **Default:** `false`
266266

267267
Whether to enable sourcemaps during dev.
268268

269269
## css.transformer
270270

271-
- **Experimental**
271+
- **Experimental:** [Give Feedback](https://github.com/vitejs/vite/discussions/13835)
272272
- **Type:** `'postcss' | 'lightningcss'`
273273
- **Default:** `'postcss'`
274274

275275
Selects the engine used for CSS processing. Check out [Lightning CSS](../guide/features.md#lightning-css) for more information.
276276

277277
## css.lightningcss
278278

279-
- **Experimental**
279+
- **Experimental:** [Give Feedback](https://github.com/vitejs/vite/discussions/13835)
280280
- **Type:**
281281

282282
```js

docs/config/ssr-options.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Build target for the SSR server.
2323

2424
## ssr.format
2525

26-
- **Experimental**
26+
- **Experimental:** [CJS support to be removed in Vite 5](https://github.com/vitejs/vite/discussions/13816)
2727
- **Deprecated** Only ESM output will be supported in Vite 5.
2828
- **Type:** `'esm' | 'cjs'`
2929
- **Default:** `esm`

docs/guide/build.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ In library mode, all `import.meta.env.*` usage are statically replaced when buil
225225
## Advanced Base Options
226226

227227
::: warning
228-
This feature is experimental, the API may change in a future minor without following semver. Please always pin Vite's version to a minor when using it.
228+
This feature is experimental. [Give Feedback](https://github.com/vitejs/vite/discussions/13834).
229229
:::
230230

231231
For advanced use cases, the deployed assets and public files may be in different paths, for example to use different cache strategies.

0 commit comments

Comments
 (0)