Skip to content

Instantly share code, notes, and snippets.

@davideast
Last active August 10, 2017 17:18
Show Gist options
  • Save davideast/757dbbda7e2d0fd4220e64cf1ec0280b to your computer and use it in GitHub Desktop.
Save davideast/757dbbda7e2d0fd4220e64cf1ec0280b to your computer and use it in GitHub Desktop.
Angular Universal Build
# Build the browser bundle
ng build --prod
# Build the universal bundle
ng build --prod --app 1
# Move the browser index.html to generate the SSR version
mv dist/index.html dist-server/
# Treat dist as static within dist-server
mv dist/ dist-server/static
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment