Alan Agius
Alan Agius
The current behavior is expected due Node.js `fetch` URL Requirement, you are using Node.js `fetch`, which requires absolute URLs. Relative URLs are not valid in this environment and will cause...
One other alternative would be to use the `provideAppInitializer` ```ts @Injectable() export class ConfigService { private config: any; setConfig(data: any): void { this.config = data; } getConfig(): any { return...
You can shift route extraction from build time to runtime by setting the `NG_BUILD_PARTIAL_SSR=1` environment variable when running `ng build`. Please note that this impacts runtime performance, as route extraction...
> Yes I know - but this is not a solution as it will slow down the lambda for every cold start.. Yes, and hence why the route extraction is...
Unless the `APP_BASE_HREF` differs from the HTML base href, there is no need to add this configuration. If it is necessary, it can be injected via dependency injection in the...
Vite requires a configured `base` href or base path before the server starts. The `base` option specifies the root URL from which your application is served. If this option is...
This seems like a bug but we'll need to look at a reproduction to find and fix the problem. Can you setup a minimal repro please? You can read [here](https://github.com/angular/angular/blob/master/CONTRIBUTING.md#-submitting-an-issue)...
Thanks for reporting this issue. However, you didn't provide sufficient information for us to understand and reproduce the problem. Please check out [our submission guidelines](https://github.com/angular/angular-cli/blob/master/CONTRIBUTING.md#-submitting-an-issue) to understand why we can't...
The instructions are generated based on the AI agent you select when you create the workspace using `ng new` or alternatively you can use `ng generate ai-config`. See: https://angular.dev/cli/generate/ai-config. In...
Actually noticed that instructions for vscode are missing from the ai config schematic.