schema.d.ts 367 B

1234567891011121314
  1. /**
  2. * Configures your project to generate an app-shell during build time.
  3. */
  4. export type Schema = {
  5. /**
  6. * The name of the project where the app-shell should be generated.
  7. */
  8. project: string;
  9. /**
  10. * Set up a server application using the Server Routing and App Engine APIs (Developer
  11. * Preview).
  12. */
  13. serverRouting?: boolean;
  14. };