Skip to content

Commit ec772e4

Browse files
committed
docs: update readme
1 parent dc2ae70 commit ec772e4

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,20 @@ Configure an angular application at runtime on the server or in a docker contain
1212
The Angular CLI provides build time configuration (via environment.ts).
1313
In a Continuous Delivery environment this is sometimes not enough.
1414

15-
## How it works & Limitations
15+
## How it works
1616
Environment variables are used for configuration.
1717
This package provides an Angular CLI builder to search for usages at build time.
1818
A [native CLI](#on-host-server-or-in-dockerfile) can be used to insert populated
1919
environment variables into index.html file(s) into the head tag or by replacing `<!--CONFIG-->`
2020
(Missing environment variables will be represented by `null`). This should be done
2121
on the host serving the bundled angular files.
2222

23-
## Version 8 Rewrite
23+
## Version 8/9 Changes
2424
Version 8.x of this package was a complete rewrite with Angular schematics and builders.
2525
If you require support for older Angular versions,
2626
[Version 2.x](https://www.npmjs.com/package/angular-server-side-configuration/v/2.0.0)
2727
of this library can be used, as it is Angular version agnostic.
2828

29-
## Version 9 Change
3029
Version 9 of angular-server-side-configuration deprecates aotSupport, since it is
3130
no longer required for Angular 9 with Ivy. The update schematic removes the option
3231
from your angular.json.
@@ -169,7 +168,7 @@ Usage: ngssc insert [options] [directory]
169168
Dockerfile
170169
```Dockerfile
171170
FROM nginx:alpine
172-
ADD https://github.com/kyubisation/angular-server-side-configuration/releases/download/v9.0.0-next.0/ngssc_64bit /usr/sbin/ngssc
171+
ADD https://github.com/kyubisation/angular-server-side-configuration/releases/download/v9.0.1/ngssc_64bit /usr/sbin/ngssc
173172
RUN chmod +x /usr/sbin/ngssc
174173
COPY dist /usr/share/nginx/html
175174
COPY start.sh start.sh

0 commit comments

Comments
 (0)