schema.d.ts 550 B

12345678910111213141516
  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. * Skip the automatic installation of packages. You will need to manually install the
  13. * dependencies later.
  14. */
  15. skipInstall?: boolean;
  16. };