injectHtmlTags()

in config/schema-org.js [4:21]


    injectHtmlTags() {
      return {
        headTags: [
          {
            tagName: 'script',
            attributes: {
              type: 'application/ld+json',
            },
            innerHTML: JSON.stringify({
              '@context': 'https://schema.org',
              '@type': 'WebSite',
              name: 'Apache APISIX',
              url: 'https://apisix.apache.org',
            }),
          },
        ],
      };
    },