We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e2b0f6 commit 08ae87bCopy full SHA for 08ae87b
1 file changed
packages/vite/src/node/config.ts
@@ -2,7 +2,7 @@ import fs from 'node:fs'
2
import path from 'node:path'
3
import fsp from 'node:fs/promises'
4
import { pathToFileURL } from 'node:url'
5
-import { promisify } from 'node:util'
+import { inspect, promisify } from 'node:util'
6
import { performance } from 'node:perf_hooks'
7
import { createRequire } from 'node:module'
8
import crypto from 'node:crypto'
@@ -1760,7 +1760,8 @@ export async function resolveConfig(
1760
logger.warn(
1761
colors.yellow(
1762
`Both esbuild and oxc options were set. oxc options will be used and esbuild options will be ignored.`,
1763
- ),
+ ) +
1764
+ ` The following esbuild options were set: \`${inspect(config.esbuild)}\``,
1765
)
1766
} else {
1767
oxc = convertEsbuildConfigToOxcConfig(config.esbuild, logger)
0 commit comments