diff --git a/.changeset/stale-houses-attack.md b/.changeset/stale-houses-attack.md new file mode 100644 index 000000000..bbd3c6aa4 --- /dev/null +++ b/.changeset/stale-houses-attack.md @@ -0,0 +1,5 @@ +--- +'@web/dev-server-rollup': patch +--- + +Make rollupAdapter handle the rootDir config setting diff --git a/packages/dev-server-rollup/src/rollupAdapter.ts b/packages/dev-server-rollup/src/rollupAdapter.ts index 8739fbbfb..5fdcd4723 100644 --- a/packages/dev-server-rollup/src/rollupAdapter.ts +++ b/packages/dev-server-rollup/src/rollupAdapter.ts @@ -253,8 +253,8 @@ export function rollupAdapter( // if the resolve import path is outside our normal root, fully resolve the file path for rollup const matches = resolvedImportPath.match(OUTSIDE_ROOT_REGEXP); if (matches) { - const upDirs = new Array(parseInt(matches[1], 10) + 1).join(`..${path.sep}`); - resolvedImportPath = `\0${path.resolve(`${upDirs}${matches[2]}`)}`; + const upDirs = new Array(parseInt(matches[1], 10)).fill('..'); + resolvedImportPath = `\0${path.resolve(rootDir, ...upDirs, matches[2])}`; } const urlParam = encodeURIComponent(resolvedImportPath); return `${VIRTUAL_FILE_PREFIX}/${filename}?${NULL_BYTE_PARAM}=${urlParam}`;