We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d9f4a4 commit c11f060Copy full SHA for c11f060
packages/@lwc/integration-not-karma/configs/base.mjs
@@ -32,7 +32,9 @@ export default {
32
if (source === 'test-utils') {
33
return '/helpers/utils.mjs';
34
} else if (source === 'wire-service') {
35
- // `/__wds-outside-roout__/${depth}/` === '../'.repeat(depth)
+ // To serve files outside the web root (e.g. node_modules in the monorepo root),
36
+ // @web/dev-server provides this "magic" path. It's hacky of us to use it directly.
37
+ // `/__wds-outside-root__/${depth}/` === '../'.repeat(depth)
38
return '/__wds-outside-root__/1/wire-service/dist/index.js';
39
}
40
},
0 commit comments