SPWizard01
SPWizard01
This is the one thing that actually blocks me from migrating from webpack to esbuild my entire app so I had to do compromises and split it, for now :)...
We use this to dynamically determine path for import outside of javascript. esbuild options: ```typescript ... platform: "browser", format: "esm", bundle: true, treeShaking: true, splitting: true, sourcemap: true, ... ```...
> The workaround is to use ``` import.meta.resolve ``` This would resolve relative to the module.
this is quite high impact for us, because having a lot of people within the company everyone types urls differently, this is especially bad when people type in the url...
You can, but, because of how corporate proxies are configured most often you don't want that :) In my case I had to create my own provider based on the...
I was able to fix it by opening /etc/profile on alpine distro and adding `export NODE_OPTIONS="--max-old-space-size=4096"`
I have only encountered this issue in WSL, hence my fix. On my main PC running Win11 Insiders I do not have this issue. I do however have this issue...