Adrian L Thomas

Results 7 comments of Adrian L Thomas

This would be great for scenarios where you want to do a larger "find and replace" but where you can't do it with a simple regex. For example changing multiple...

Thank you @wwilsman that work around worked for me. We run Cypress against an IP whitelisted website, where we use a proxy to run the tests against. However, when running...

> Hey @AdrianLThomas! We should be fixing in the near future -- this should be handled automatically. > > > Surprisingly, it also seemed to pass for Firefox (even though...

Hey @samwillis thank you for the speedy response. Unfortunately I still see the exact same error when updating the config as per those docs you linked to: `Error: createRequire is...

Not sure if related (yet it is a bundling error), but when creating a new React app: `npx create-react-app create-react-app-pglite` and add the intro code (in original post), I see...

@lirbank Unfortunately the suggested workaround for Next 14 also doesn't work: https://github.com/electric-sql/pglite/issues/322#issuecomment-2351505322 This is also an issue for a brand new create-react-app (not just Next.js): - https://github.com/electric-sql/pglite/issues/322#issuecomment-2351508149 - https://github.com/electric-sql/pglite/issues/322#issuecomment-2352899403

@lirbank Fantastic. I can confirm that works in Next.js 14 too! Excellent work. ```mjs // next.config.mjs const nextConfig = { experimental: { serverComponentsExternalPackages : ['@electric-sql/pglite'], }, } export default nextConfig;...