Preston Lamb
Preston Lamb
I think the `insertNode` and `insertNodeAndRemoveOld` functions can be used here in some capacity
I'm unsure where the change that starts [on line 371](https://github.com/angular/angular-cli/pull/23682/files#diff-309812edd0ff24c480525d73b2e4b7a0d82b91d2a689720f2e77395f7958bea7R371) of that PR should be added in Analog. My guess is in the object whose name is `name: '@analogjs/vite-plugin-angular-optimizer'` in...
[These are the changes I've begun making](https://github.com/pjlamb12/analog/commit/80ca785f56164e1dfd15ec99ebbb53e808e342f4). I haven't worked with esbuild (or anything similar) before so I know this may need to change.
Will resolve #49
I think this can be used to establish an order of execution for interdependent tasks. In fact, I initially created this library for that purpose at work. I wish I...
What I do for this is put the auth config inside the config.json file that is loaded in RuntimeConfigLoaderModule. And then in the code I get the `authConfig` from the...
I don't know exactly how you're loading the Auth configuration, but like I said, in my `app.component.ts` file I get the auth config, and then use the `OAuthService` to set...
Credit to this blog article that helped me out: https://betterprogramming.pub/how-to-handle-async-providers-in-angular-51884647366