schema.d.ts 850 B

1234567891011121314151617181920212223
  1. /**
  2. * Enables Server-Side Rendering (SSR) for your Angular application. SSR allows your app to
  3. * be rendered on the server, which can significantly improve its initial load performance
  4. * and Search Engine Optimization (SEO). This schematic configures your project for SSR,
  5. * generating the necessary files and making the required modifications to your project's
  6. * structure.
  7. */
  8. export type Schema = {
  9. /**
  10. * The name of the project you want to enable SSR for.
  11. */
  12. project: string;
  13. /**
  14. * Configure the server application to use the Angular Server Routing API and App Engine
  15. * APIs (currently in Developer Preview).
  16. */
  17. serverRouting?: boolean;
  18. /**
  19. * Skip the automatic installation of packages. You will need to manually install the
  20. * dependencies later.
  21. */
  22. skipInstall?: boolean;
  23. };