Skip to content

Commit a20267b

Browse files
authored
fix: don't store temporary vite config file in node_modules if deno (#18823)
1 parent e4a0ff1 commit a20267b

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

packages/vite/src/node/config.ts

+7-1
Original file line numberDiff line numberDiff line change
@@ -1858,7 +1858,13 @@ async function loadConfigFromBundledFile(
18581858
// with --experimental-loader themselves, we have to do a hack here:
18591859
// write it to disk, load it with native Node ESM, then delete the file.
18601860
if (isESM) {
1861-
const nodeModulesDir = findNearestNodeModules(path.dirname(fileName))
1861+
// Storing the bundled file in node_modules/ is avoided for Deno
1862+
// because Deno only supports Node.js style modules under node_modules/
1863+
// and configs with `npm:` import statements will fail when executed.
1864+
const nodeModulesDir =
1865+
typeof process.versions.deno === 'string'
1866+
? undefined
1867+
: findNearestNodeModules(path.dirname(fileName))
18621868
if (nodeModulesDir) {
18631869
await fsp.mkdir(path.resolve(nodeModulesDir, '.vite-temp/'), {
18641870
recursive: true,

0 commit comments

Comments
 (0)