Skip to content

Commit

Permalink
Merge pull request #7258 from QwikDev/fix-repl
Browse files Browse the repository at this point in the history
fix(repl): resolve core/internal
  • Loading branch information
wmertens authored Jan 15, 2025
2 parents 66529fc + c138449 commit ad4444c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/docs/src/repl/worker/repl-plugins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const replResolver = (options: ReplInputOptions, buildMode: 'client' | 's
if (pkgPath === '/server') {
return '\0qwikServer';
}
if (/^(|\/jsx(-dev)?-runtime)$/.test(pkgPath)) {
if (/^(|\/jsx(-dev)?-runtime|\/internal)$/.test(pkgPath)) {
return '\0qwikCore';
}
console.error(`Unknown package ${id}`, match);
Expand Down

0 comments on commit ad4444c

Please sign in to comment.