Pascal Heitz
Pascal Heitz
Hey @pigcan, thank you for the quick reply! I am not sure it comes from your package, because the very same problem occurs with `webpack-watch-files-plugin` (your "competitor"). How did you...
I see, I am not familiar with `webpack-dev-server`, and didn't realize I had to call it instead of classic `npx webpack`. Yeah it definitely works fine with it. Is it...
The console shows the following error: ```This document requires 'TrustedHTML' assignment.``` It seems that Google Translate made its CSP more restrictive. This is probably due to the answer's header: ```...
Thanks, you saved me at least two hours!
Hi, any news from this fix ? Currently this problem makes the whole package unusable, as bundles contain absolute path from my dev machine... :shrug:
I probably have the same issue: Setup: ```sh mkdir zsh-bug cd zsh-bug touch data-access-service-marketplace-models touch legacy-marketplace-models ``` Experiment 1: ```sh ls models # Now press TAB # changes to ls...
I'm using @YoussefHenna code, with a little modification: ```ts // On my machine `matchMedia` returns a `MediaQueryList`, so `systemValue` is always `dark`. const systemValue = window.matchMedia('(prefers-color-scheme: dark)') ? 'dark': 'light';...
This should be fixed imho. It forces me to do something semantically wrong. ```ts @Get() @ZodSerializerDto(ResponseDto) // This is wrong, the method should return `ResponseDto`, not an array of `ResponseDto`....
I have a similar problem, but my logs are successfully output ; it's just that `⠏ [Webpack] Building with Webpack ...` is overwriting the last logs in the console constantly....