How do I remove non-semantic trash code like e.t.c. in Angular SSR?
In Vue and React, this isn’t usually a problem. They don’t break SEO with non-existent tags. I’m new to Angular SSR, and when I tried it, I was horrified. It feels like Angular considers leaving trash behind as normal. Maybe I missed a setting, but I haven’t found anyone else acknowledging this issue. Even tutorials on YouTube do SSR without addressing this.
Angular SSR: Unable to retrieve hydration info from the TransferState
I use "@supabase/ssr": "^0.3.0"
in my application, when I try to navigate to a route with dynamic parameters I do get:
Angular 17 – Does subscribing to FormControl’s valueChanges need an unsubscribe?
The answers in this topic are older than 7 years. Is it state of the art that I need unsubscribe FormControl subscription from ReactiveFormsModule?
Angular 17 two files sharing same path using flag-icon library
I npm install flag-icons
library within Angular 17 ssr project and get a list of error by serving the app:
Routing inside shared and nested modules
Within my app-module I have three feature modules “desktop”, “info”, “shared”. The desktop-module contains the info-module and the shared-module. The info-module contains the imprint-component and the shared-module contains the foot component:
How to get query params with angular 17 ssr on server side?
I would like to make a POST request in my angular app as part of the app init logic and I need the some data from the queryParams for the request, but I can’t find a way that works in angular 17.