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 0439718 commit 8cfaab2Copy full SHA for 8cfaab2
src/utils/resolvers.ts
@@ -34,7 +34,8 @@ export function resolveConfigPlugins(
34
if (
35
typeof plugin === "string" &&
36
!plugin.startsWith(".") &&
37
- !path.isAbsolute(plugin)
+ !path.isAbsolute(plugin) &&
38
+ !plugin.startsWith("file://")
39
) {
40
return resolveNodeModule(plugin, { paths: [fileName] }) || plugin;
41
}
0 commit comments