File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed
packages/qwik/src/optimizer/src/plugins Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' @qwik.dev/core ' : patch
3
+ ---
4
+
5
+ fix: the @qwik-handlers aren't properly handled in dev mode for library projects
Original file line number Diff line number Diff line change @@ -668,7 +668,11 @@ export function qwikVite(qwikViteOpts: QwikVitePluginOptions = {}): any {
668
668
// TODO: Removed the "__qwikCityNew" condition in V3
669
669
const isNEW =
670
670
( globalThis as any ) . __qwikRouterNew === true ||
671
- ( globalThis as any ) . __qwikCityNew === true ;
671
+ ( globalThis as any ) . __qwikCityNew === true ||
672
+ // related to this issue https://github.com/QwikDev/qwik/issues/7600
673
+ // FIX: the @qwik -handlers aren't properly handled in dev mode for library projects
674
+ server . config . build . lib ;
675
+
672
676
if ( isNEW ) {
673
677
return plugin ;
674
678
} else {
You can’t perform that action at this time.
0 commit comments