The default port changed from 3000 to 5173, which breaks every script, proxy rule and README that had the old one written down. strictPort is the setting worth…
Building a package rather than a site means externalising the framework, emitting several formats, and not bundling anything the consumer already has. Forgetting external is the mistake that…
Dependencies are scanned statically and pre-bundled with esbuild, so anything imported through a computed path is missed and discovered mid-navigation. The symptom of a missed dependency is a…
3.2 in August makes the compiler macro stable. Every component ended with a return listing what it had just declared, and a compiler can work that out.
Dependencies are pre-bundled with esbuild once and cached, because a package shipping four hundred small CommonJS files would otherwise be four hundred browser requests. The scan finds imports…
The dev server runs on a different port from the API, which is a cross-origin request, and proxying is simpler than configuring CORS for development only. changeOrigin rewrites…