You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a really awesome project; thanks for creating!
Currently the proxy strategy results in stripping Vite dev server response headers. Vite uses caching/etags heavily to boost page load performance, and so there is quite a hit in performance with the headers missing(1.2s vs 150ms in my current app). Without the headers Chrome re-fetches all the source files on page load, and the V8 compilation cache is never used.
For now I'm pointing the scripts in index.html directly to the Vite server, and have the origin configured so it serves assets pointing back to itself. This appears to be working fine for now and is resulting in properly cached assets.
I'm wondering if something like YARP could help wrangle some of the proxy logic.
The text was updated successfully, but these errors were encountered:
This is a really awesome project; thanks for creating!
Currently the proxy strategy results in stripping Vite dev server response headers. Vite uses caching/etags heavily to boost page load performance, and so there is quite a hit in performance with the headers missing(1.2s vs 150ms in my current app). Without the headers Chrome re-fetches all the source files on page load, and the V8 compilation cache is never used.
For now I'm pointing the scripts in
index.html
directly to the Vite server, and have theorigin
configured so it serves assets pointing back to itself. This appears to be working fine for now and is resulting in properly cached assets.I'm wondering if something like YARP could help wrangle some of the proxy logic.
The text was updated successfully, but these errors were encountered: