Skip to content

Commit

Permalink
docs: feedback about experimental features (#13846)
Browse files Browse the repository at this point in the history
  • Loading branch information
patak-dev committed Jul 17, 2023
1 parent 91bbbee commit 378fbed
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions docs/config/build-options.md
Expand Up @@ -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 = (
Expand Down Expand Up @@ -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`
Expand Down
2 changes: 1 addition & 1 deletion docs/config/dep-optimization-options.md
Expand Up @@ -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'`

Expand Down
6 changes: 3 additions & 3 deletions docs/config/shared-options.md
Expand Up @@ -260,23 +260,23 @@ export default defineConfig({

## css.devSourcemap

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

Whether to enable sourcemaps during dev.

## css.transformer

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

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

## css.lightningcss

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

```js
Expand Down
2 changes: 1 addition & 1 deletion docs/config/ssr-options.md
Expand Up @@ -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`
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/build.md
Expand Up @@ -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.
Expand Down

0 comments on commit 378fbed

Please sign in to comment.