PatrickJS
PatrickJS
this was completed by https://github.com/QwikDev/qwik/pull/6798 https://qwik.dev/press/
node 20 has a way to specify env file
well it works if you make sure you don't define components in the same file. ```tsx import { CategoryFilter } from "./cat-filter"; export const MovementFilter = component$(() => { return...
actually this is likely related to the preload vite bug that qwik-ui ran into the import ``` import "./routes_component_kl40wl4em6q.js"; ``` shouldn't be a thing in qwik outputs since this is...
@gparlakov don't hold back 👍 the repro you did was really helpful yeah this is vite hoisting files and qwik conflicting. both are doing the same thing and when vite...
we can say in the docs components should be separated one per file until we figure out the fix.
@fprl well only split if you run into the problem. @wmertens do we still have this issue in v2?
for anyone that needs this you can overwrite stripTrailingSlash for your edge case `main.ts` ```typescript import { Location } from '@angular/common'; const __stripTrailingSlash = (Location as any).stripTrailingSlash; (Location as any).stripTrailingSlash...
PRs are welcomed. feel free to use ai to generate a basic version to start out