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