api.11tydata.js 277 B

12345678910111213141516
  1. /**
  2. * @license
  3. * Copyright 2021 Google LLC
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. const fs = require('fs');
  7. module.exports = () => {
  8. const customElements = JSON.parse(
  9. fs.readFileSync('custom-elements.json', 'utf-8')
  10. );
  11. return {
  12. customElements,
  13. };
  14. };