If you chose a different path or name, then use your corresponding paths.
Now you should be able to import environment in every typescript file, and use the variables in there.
When you run it locally, it will use the variables from "src/environments/environment.ts".
And when you build this script (using 1 of the 2 builders), it will use the variables from "src/environments/environment.prod.ts",
standalone component generation
On default ng generate component myComponent will make it a standalone component. This is good for when you plan on making it exportable, but otherwise not so much.
You can change it so that it doesnāt make it standalone when you use ng generate component myComponent
You can either use ng generate component --standalone false myComponent, this will generate this one with your preferred standalone settings.
But if you want to change it as default mode, go to Angular.json and define the default behaviour:
The reason why you would want it to be standalone is for creating a component you want to export to other applications. But if you donāt need that, Iād advise to mkae it not be standalone.
Prevent issues by setting it to default in the init generation command: ng new --no-standalone appName