diff --git a/docs/config/build-options.md b/docs/config/build-options.md index 7552215ed5edfa..b5872e363de973 100644 --- a/docs/config/build-options.md +++ b/docs/config/build-options.md @@ -34,7 +34,7 @@ The polyfill can be disabled using `{ polyfill: false }`. 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. -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`: +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`: ```ts type ResolveModulePreloadDependenciesFn = ( @@ -218,7 +218,7 @@ By default, Vite will empty the `outDir` on build if it is inside project root. ## build.copyPublicDir -- **Experimental** +- **Experimental:** [Give feedback](https://github.com/vitejs/vite/discussions/13807) - **Type:** `boolean` - **Default:** `true` diff --git a/docs/config/dep-optimization-options.md b/docs/config/dep-optimization-options.md index d6b994b32cd809..ec499f4d9ccf16 100644 --- a/docs/config/dep-optimization-options.md +++ b/docs/config/dep-optimization-options.md @@ -64,7 +64,7 @@ Set to `true` to force dependency pre-bundling, ignoring previously cached optim ## optimizeDeps.disabled -- **Experimental** +- **Experimental:** [Give Feedback](https://github.com/vitejs/vite/discussions/13839) - **Type:** `boolean | 'build' | 'dev'` - **Default:** `'build'` diff --git a/docs/config/shared-options.md b/docs/config/shared-options.md index d262e2176c83fe..fd193f0fde4966 100644 --- a/docs/config/shared-options.md +++ b/docs/config/shared-options.md @@ -260,7 +260,7 @@ export default defineConfig({ ## css.devSourcemap -- **Experimental** +- **Experimental:** [Give Feedback](https://github.com/vitejs/vite/discussions/13845) - **Type:** `boolean` - **Default:** `false` @@ -268,7 +268,7 @@ Whether to enable sourcemaps during dev. ## css.transformer -- **Experimental** +- **Experimental:** [Give Feedback](https://github.com/vitejs/vite/discussions/13835) - **Type:** `'postcss' | 'lightningcss'` - **Default:** `'postcss'` @@ -276,7 +276,7 @@ Selects the engine used for CSS processing. Check out [Lightning CSS](../guide/f ## css.lightningcss -- **Experimental** +- **Experimental:** [Give Feedback](https://github.com/vitejs/vite/discussions/13835) - **Type:** ```js diff --git a/docs/config/ssr-options.md b/docs/config/ssr-options.md index 8d597ad59a0cd7..d8b65f1ea1c910 100644 --- a/docs/config/ssr-options.md +++ b/docs/config/ssr-options.md @@ -23,7 +23,7 @@ Build target for the SSR server. ## ssr.format -- **Experimental** +- **Experimental:** [CJS support to be removed in Vite 5](https://github.com/vitejs/vite/discussions/13816) - **Deprecated** Only ESM output will be supported in Vite 5. - **Type:** `'esm' | 'cjs'` - **Default:** `esm` diff --git a/docs/guide/build.md b/docs/guide/build.md index 4b3d629350a5a8..b2b210b51fcd28 100644 --- a/docs/guide/build.md +++ b/docs/guide/build.md @@ -225,7 +225,7 @@ In library mode, all `import.meta.env.*` usage are statically replaced when buil ## Advanced Base Options ::: warning -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. +This feature is experimental. [Give Feedback](https://github.com/vitejs/vite/discussions/13834). ::: For advanced use cases, the deployed assets and public files may be in different paths, for example to use different cache strategies.