schema.d.ts 709 B

123456789101112131415161718192021
  1. /**
  2. * Sets up server-side rendering (SSR) for your Angular application. SSR allows your app to
  3. * be rendered on the server, improving initial load performance and SEO. This schematic
  4. * configures your project for SSR and generates the necessary files.
  5. */
  6. export type Schema = {
  7. /**
  8. * The name of the project to enable server-side rendering for.
  9. */
  10. project: string;
  11. /**
  12. * Configure the server application to use the Server Routing and App Engine APIs (Developer
  13. * Preview).
  14. */
  15. serverRouting?: boolean;
  16. /**
  17. * Skip the automatic installation of packages. You will need to manually install the
  18. * dependencies later.
  19. */
  20. skipInstall?: boolean;
  21. };