schema.d.ts 666 B

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