Nik Sauer

Results 10 comments of Nik Sauer

I would also like to extend certain classes but Typescript complains due to the private constructors. My use case is adding a computed ID to an `Interval` to quickly identify...

This has already been implemented. Check out https://github.com/auth0/node-jwks-rsa

@martinsik @web-bert See solution in https://github.com/facebook/create-react-app/issues/12329#issuecomment-1303783916

> You'll need to use `/oauth2/start` instead [..] Doesn't work for me unfortunately. Here's my setup: ```yaml apiVersion: traefik.containo.us/v1alpha1 kind: Middleware metadata: name: traefik-internal-oauth-auth namespace: default spec: forwardAuth: address: https://oauth-internal.XXX.com/oauth2/auth...

Can this please be reopened since it does not work with the 401 errors middleware?

We have the same problem with `SASS_PATH='src/assets/styles'`. `@import 'shared';`has been working up to CRA v5: ``` $ tree src/assets/styles src/assets/styles ├── _colors.scss ├── _defaults.scss ├── _global.scss ├── _shared.scss ├── bootstrap...

This syntax also works: `SASS_PATH=$(cd ./src/assets/styles && pwd) react-scripts start`

> Running Storybook 7.0.12 with CRA , using a variable to read an environment value is not working. > > ``` > const name = "REACT_APP_EXAMPLE"; > > console.log(process.env.REACT_APP_EXAMPLE); //...

I'm pretty sure it's due to these changes: https://github.com/storybookjs/storybook/pull/17174/files

Following the above changes, I was able to retain dynamic environment access: ```ts // main.ts import type { StorybookConfig } from '@storybook/react-webpack5'; const config: StorybookConfig = { [...], env: (config)...