Johann

Results 16 comments of Johann

Hi! I have no immediate plans of adding more template options, I'd really like to stick to the options that are provided by [create-vite](https://github.com/vitejs/vite/tree/main/packages/create-vite). There are simply too many options...

Hi! Thanks for your suggestion - I will include this change in the next version.

Set the secure property for the `/api` route to `false`: ``` '/api': { target: 'https://localhost:5001/', changeOrigin: true, secure: false } ``` You'll also have to prepend `api/` to the route...

I ran into this problem with an angular 16 app that uses material and has not been migrated to mdc components: ``` core.mjs:1955 NG0912: Component ID generation collision detected. Components...

Tailing the kit.log while opening the prompt revealed that the delay happens on the `Create child Prompt process []` step. Example log output: ``` [2023-01-19 17:04:45.463] [info] WebContents Focus [2023-01-19...

Works like a charm! Thanks @Morstis and @neuged!

I'm trying to build a repro, in the meantime here are excerpts of the relevant configurations: appsettings: ```json "ReverseProxy": { "Routes": { "host": { "ClusterId": "host", "AuthorizationPolicy": "default", "Match": {...

@benjaminpetit I created a reproduction sample here: https://github.com/johanndev/yarp-2560-repro Unfortunately, I wasn't able to build a fully standalone sample - To test the setup, an ADFS instance is needed (See Program.cs...

Some findings: When I set a breakpoint in the authorization middleware at the point where AllowAnonymous is evaluated, I see that the corresponding Metadata is not available: ![image](https://github.com/user-attachments/assets/e98ffc0a-3ec1-400e-9850-6cc64d9745d2) The request...

> Do you get the same issue if you navigate directly to /Account/AccessDenied? Yes, navigating to `/Account/AccessDenied` directly also triggers a redirect to ADFS and ultimately leads to the redirect...