Lim Jiechao
Lim Jiechao
These three `const` declaration happened after their usages in `entry.preview.mjs`. Once I moved them up before the usages, the preview could work. ```js // `routeLoaderQrl(…)` // REF: https://github.com/BuilderIO/qwik/blob/7eebd491ff85812e54a899b43fccb07ee6bc31da/packages/qwik-city/runtime/src/server-functions.ts#L185-L227 const Be...
@thekip Are you able to reproduce it? So far, I've no luck in creating one without company code 😢
@PacoDu I followed @thekip's suggestion. It seems like the order of imports is causing the problem in `entry.preview.tsx`: Problem is resolved by putting `import render from './entry.ssr';` _after_ `import qwikCityPlan...
@thekip Thanks for the suggestion! The issue is now reproducible. Check out the repository https://github.com/limjiechao/qwik-error-reproduction. ```bash npm i && npm run preview ```