Denis Bendrikov
Denis Bendrikov
Looking great so far! And it would be even better to have the ability to extend the behavior of `IsCspReportRequest` method in order to cut some requests earlier (before they...
@tpeczek sure! I'm thinking of something like that: ```c# .MapContentSecurityPolicyReporting(ReportRoute, (context) => context.User.Identity.IsAuthenticated); ``` And thanks for the quick feedback! 🚀
@mr47 `devtool: "source-map"`, right. The problem is with current setup this option (`devtool: "source-map"`) will not work at all. _(Look for 404 in console)_  Actually even `devtool: "inline-source-map"` will...
@AgentEnder just tried `[email protected]` and the issue seems fixed. While trying it, I also encountered an issue with `nx reset`, but it is already tracked by #27006 and can be...
As I mentioned in the issue, I was able to workaround it by opting into sequential postinstall script execution via: ```sh npm install --foreground-scripts ```
As running post-install scripts sequentially (or disabling them) has become a common workaround here, I'd like to emphasize that a much better solution is to **eliminate multiple versions** of the...
@MaxKless if I understand the problem correctly, it can be solved once and for all by implementing workspace-wide ESLint rule for Nx Monorepo that fails if `exec`, `spawn`, `fork` etc...
> @MaxKless if I understand the problem correctly, it can be solved once and for all by implementing workspace-wide ESLint rule for Nx Monorepo that fails if `exec`, `spawn`, `fork`...
@MaxKless I found one of the problematic places while going through @absurdism2's report: @nx/vite : 19.6.4 https://github.com/nrwl/nx/blob/19.6.4/packages/vite/src/utils/executor-utils.ts#L34