Type alias ResolvedSeiaConfig

ResolvedSeiaConfig: {
    mode: "development" | "production";
    paths: {
        anchor: string;
        dist: string;
        entry: string;
        rsc: string;
        src: string;
        ssr: string;
    };
    root: string;
    serve: {
        port: number;
    };
}

The resolved configuration object for the Seia CLI.

Type declaration

  • mode: "development" | "production"
  • paths: {
        anchor: string;
        dist: string;
        entry: string;
        rsc: string;
        src: string;
        ssr: string;
    }
    • anchor: string
    • dist: string
    • entry: string
    • rsc: string
    • src: string
    • ssr: string
  • root: string
  • serve: {
        port: number;
    }
    • port: number