We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 225da98 commit 3d51c59Copy full SHA for 3d51c59
packages/@lwc/integration-not-karma/helpers/utils.js
@@ -267,7 +267,7 @@ export const resolvePathOutsideRoot = (file) => {
267
return file.replace(/^(\.\.\/)+?(.+?)$/, (_, outside, filepath) => {
268
// To serve files from outside the web root (e.g. from the monorepo root
269
// node_modules, @web/dev-server provides this "magic" path. It's hacky
270
- // of us to use it it directly.
+ // of us to use it directly.
271
// '../'.repeat(depth) becomes `/__wds-outside-root__/${depth}/`
272
const depth = outside.length / 3;
273
return `/__wds-outside-root__/${depth}/${filepath}`;
0 commit comments