Skip to content

Commit a6f5f5b

Browse files
authored
feat: add ssr.resolve.mainFields option (#18646)
1 parent 0e1f437 commit a6f5f5b

File tree

4 files changed

+12
-0
lines changed

4 files changed

+12
-0
lines changed

docs/config/ssr-options.md

+7
Original file line numberDiff line numberDiff line change
@@ -53,3 +53,10 @@ When using this option, make sure to run Node with [`--conditions` flag](https:/
5353
For example, when setting `['node', 'custom']`, you should run `NODE_OPTIONS='--conditions custom' vite` in dev and `NODE_OPTIONS="--conditions custom" node ./dist/server.js` after build.
5454

5555
:::
56+
57+
### ssr.resolve.mainFields
58+
59+
- **Type:** `string[]`
60+
- **Default:** `['module', 'jsnext:main', 'jsnext']`
61+
62+
List of fields in `package.json` to try when resolving a package's entry point. Note this takes lower precedence than conditional exports resolved from the `exports` field: if an entry point is successfully resolved from `exports`, the main field will be ignored. This setting only affect non-externalized dependencies.

docs/guide/migration.md

+2
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,8 @@ There are other breaking changes which only affect few users.
9393
- If you are specifying a CommonJS file as an entry point, you may need additional steps. Read [the commonjs plugin documentation](https://github.com/rollup/plugins/blob/master/packages/commonjs/README.md#using-commonjs-files-as-entry-points) for more details.
9494
- [[#18243] chore(deps)!: migrate `fast-glob` to `tinyglobby`](https://github.com/vitejs/vite/pull/18243)
9595
- Range braces (`{01..03}``['01', '02', '03']`) and incremental braces (`{2..8..2}``['2', '4', '6', '8']`) are no longer supported in globs.
96+
- [[#18395] feat(resolve)!: allow removing conditions](https://github.com/vitejs/vite/pull/18395)
97+
- This PR not only introduces a breaking change mentioned above as "Default value for `resolve.conditions`", but also makes `resolve.mainFields` to not be used for no-externalized dependencies in SSR. If you were using `resolve.mainFields` and want to apply that to no-externalized dependencies in SSR, you can use [`ssr.resolve.mainFields`](/config/ssr-options#ssr-resolve-mainfields).
9698
- [[#18493] refactor!: remove fs.cachedChecks option](https://github.com/vitejs/vite/pull/18493)
9799
- This opt-in optimization was removed due to edge cases when writing a file in a cached folder and immediately importing it.
98100

packages/vite/src/node/config.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1093,6 +1093,7 @@ export async function resolveConfig(
10931093
configEnvironmentsSsr.resolve.conditions ??= config.ssr?.resolve?.conditions
10941094
configEnvironmentsSsr.resolve.externalConditions ??=
10951095
config.ssr?.resolve?.externalConditions
1096+
configEnvironmentsSsr.resolve.mainFields ??= config.ssr?.resolve?.mainFields
10961097
configEnvironmentsSsr.resolve.external ??= config.ssr?.external
10971098
configEnvironmentsSsr.resolve.noExternal ??= config.ssr?.noExternal
10981099
}

packages/vite/src/node/ssr/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ export interface SSROptions {
4343
* @default []
4444
*/
4545
externalConditions?: string[]
46+
47+
mainFields?: string[]
4648
}
4749
}
4850

0 commit comments

Comments
 (0)