File tree 1 file changed +7
-1
lines changed
1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -1858,7 +1858,13 @@ async function loadConfigFromBundledFile(
1858
1858
// with --experimental-loader themselves, we have to do a hack here:
1859
1859
// write it to disk, load it with native Node ESM, then delete the file.
1860
1860
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 ) )
1862
1868
if ( nodeModulesDir ) {
1863
1869
await fsp . mkdir ( path . resolve ( nodeModulesDir , '.vite-temp/' ) , {
1864
1870
recursive : true ,
You can’t perform that action at this time.
0 commit comments