projects/storefrontlib/cms-structure/seo/config/seo.config.ts
Properties |
|
Optional seo |
Type : SeoOptions
|
import { Injectable } from '@angular/core';
import { Config } from '@spartacus/core';
@Injectable({
providedIn: 'root',
useExisting: Config,
})
export abstract class SeoConfig {
seo?: SeoOptions;
}
export interface SeoOptions {
structuredData?: StructuredData;
}
export interface StructuredData {
disableInDevMode?: boolean;
}
declare module '@spartacus/core' {
interface Config extends SeoConfig {}
}