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
The string of code `new URL('./', import.meta.url)` causes webpack to
try and resolve the URL, which causes problems for downstream users who
are using that bundler:
webpack/webpack#16878electric-sql/pglite#328
This PR replaces `new URL('./', import.meta.url)` with `new URL('./',
Object(import.meta).url)`, which is a workaround for this behavior.
0 commit comments