interface AstroAdapter {
    adapterFeatures?: AstroAdapterFeatures;
    args?: any;
    exports?: string[];
    name: string;
    previewEntrypoint?: string;
    serverEntrypoint?: string;
    supportedAstroFeatures: AstroFeatureMap;
}

Properties

adapterFeatures?: AstroAdapterFeatures
args?: any
exports?: string[]
name: string
previewEntrypoint?: string
serverEntrypoint?: string
supportedAstroFeatures: AstroFeatureMap

List of features supported by an adapter.

If the adapter is not able to handle certain configurations, Astro will throw an error.