306,921 questions
0
votes
0
answers
36
views
Try files not working with two different containerized nginx
I have two nginx configured in two different containers.
The one on the front do proxy_pass:
services:
web:
image: nginx:stable-alpine
restart: always
ports:
- 80:80
- 443:...
0
votes
0
answers
23
views
Inject migration angular didn't work on nx workspace
I use this nx generate @angular/core:inject to migrate projects but get below error:
Could not find any files to migrate under the path /home/jibit/Desktop/jibit-angular-workspace/. Cannot run the ...
-4
votes
0
answers
36
views
Regarding the use of PrimeNG: the impact of its license on commercial applications [closed]
What is the situation with the License? (It is under the MIT License in the STS state.)
Can I continue using without purchasing LTS, with all functions remaining unaffected?
Will a Warning Message ...
-5
votes
0
answers
56
views
Accessing values from Angular object defined with TypeScript index signature using bracket notation [closed]
I am having trouble accessing my environment variables in Angular. What am trying to achieve is merging configuration values coming from the backend/server with the configuration of the frontend. Here ...
0
votes
0
answers
11
views
better-auth: Unable to create schema for genericOauth with sqlite in nuxt
I'm setting up my nuxt project and I want to configure better-auth to use my companies Oauth2/OIDC provider to authenticate against with the genericOauth plugin. When running npx @better-auth/cli@...
1
vote
2
answers
39
views
How to keep only a specific field from a Form Group active when disabling an Angular form?
I have a reactive form in Angular where when a specific field active_deActive is changed, I want the entire form to be deactivated, but the field itself to remain active so that the user can change it ...
0
votes
1
answer
32
views
Why does Angular 19 bootstrapping occur differently in Angular 19.2.12 and 19.2.17?
I have two different computers. One computer has Angular 19.2.12 and Node.js 20 installed. From this computer when I run ng new testApp to create new Angular project then a new Angular project creates ...
-3
votes
0
answers
45
views
Console logs are missing in Angular build even after removing webpack and obfuscation [closed]
I’m working on an Angular 13 project, and I recently had a custom webpack.config.js file and a JS obfuscation step (obfuscate.js) in my build pipeline.
Later, I removed both — but now, my console logs ...
0
votes
0
answers
32
views
ngx-scrolltop preferred appeared position?
I am new to Angular and web development. I am trying to set the desired position of my icon to be appear like that:
<ngx-scrolltop [showAtPosition]="300" backgroundColor="#609926&...
-2
votes
0
answers
43
views
How can I load different styles for different pages in Angular 20 and when all assets are also different? [closed]
I’m currently working on an Angular v20+ project and facing an issue during the initial setup stage.
I have two different UI parts in my project:
Home (Landing Page and related public pages)
Dashboard ...
2
votes
0
answers
55
views
Mat dialogs are not opening when devtools are in open
I'm using Angular v19 and I recently updated my Chrome version to the latest. Now if my devtool is open, matdialog are not opening; if I change my screen resolution only, it's working. But it is ...
1
vote
2
answers
57
views
Angular 20 Reactive Forms - Custom validator based on signal
Here's the StackBlitz showing the problem.
I have a reactive form with an Email field and Send Verification Code button. When the code is sent, the Verification Code field appears, so the user can ...
-2
votes
0
answers
39
views
Getting error "UUID cannot parse the given literal of type `StringValueNode`." [closed]
Working in Angular project and using GraphGL, trying to pass parameters to the query variables and used coalescing operator but getting this error:
"errors": [
{
"message": "...
0
votes
0
answers
33
views
Single Spa importing Angular 18 MFE - died in status LOADING_SOURCE_CODE: undefined [closed]
I'm attempting to import a simple angular cli generated application as an MFE into my single-spa root config. The angular application is running version 18 and single-spa version 6. When running ...
0
votes
0
answers
25
views
Is it possible to use the AngularNodeAppEngine and dynamically provide the CSP nonce to Angular?
I'm using Angular SSR (@angular/ssr) with the AngularNodeAppEngine for server-side rendering.
I\ve set up a strict Content Security Policy (CSP) that requires using nonces for inline scripts and ...