File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
docs/documentation/stories Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -366,8 +366,8 @@ Now lets create a few handy scripts to help us do all of this in the future.
366
366
"scripts" : {
367
367
368
368
// These will be your common scripts
369
- "build:dynamic " : " npm run build:client-and-server-bundles && npm run webpack:server" ,
370
- "serve:dynamic " : " node dist/server.js" ,
369
+ "build:ssr " : " npm run build:client-and-server-bundles && npm run webpack:server" ,
370
+ "serve:ssr " : " node dist/server.js" ,
371
371
372
372
// Helpers for the above scripts
373
373
"build:client-and-server-bundles" : " ng build --prod && ng build --prod --app 1 --output-hashing=false" ,
@@ -378,7 +378,7 @@ Now lets create a few handy scripts to help us do all of this in the future.
378
378
In the future when you want to see a Production build of your app with Universal (locally), you can simply run:
379
379
380
380
``` bash
381
- npm run build:dynamic && npm run serve:dynamic
381
+ npm run build:ssr && npm run serve:ssr
382
382
```
383
383
384
384
Enjoy!
You can’t perform that action at this time.
0 commit comments