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 74668c5 commit 6066577Copy full SHA for 6066577
src/lwc-dev-server/index.ts
@@ -30,7 +30,7 @@ async function createLWCServerConfig(
30
const { namespace } = projectJson;
31
32
// e.g. lwc folders in force-app/main/default/lwc, package-dir/lwc
33
- const namespacePaths = (await Promise.all(packageDirs.map((dir) => glob(`${dir.fullPath}/**/lwc`)))).flat();
+ const namespacePaths = (await Promise.all(packageDirs.map((dir) => glob(`${dir.fullPath}/**/lwc`, { absolute: true })))).flat();
34
35
const ports = serverPorts ??
36
(await ConfigUtils.getLocalDevServerPorts()) ?? {
0 commit comments