From 44fa023a06eb495d31c4683b23de8d9b5c71d9bc Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Sat, 8 May 2021 16:44:11 -0500 Subject: [PATCH] Generate tv endpoints with eleventy --- build-lists.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build-lists.js b/build-lists.js index f3daa2e..096fc2d 100644 --- a/build-lists.js +++ b/build-lists.js @@ -236,12 +236,12 @@ class BuildLists { const appType = getAppType( app ) if ( isVideo( app ) ) { - // this.endpointMaps.eleventy.add({ - // route: getVideoEndpoint(app), - // payload: buildVideoPayload( app, this.allVideoAppsList, this.lists.video ) - // }) + this.endpointMaps.eleventy.set( + getVideoEndpoint(app), + buildVideoPayload( app, this.allVideoAppsList, this.lists.video ) + ) - this.endpointMaps.nuxt.set( getVideoEndpoint(app), buildVideoPayload( app, this.allVideoAppsList, this.lists.video ) ) + // this.endpointMaps.nuxt.set( getVideoEndpoint(app), buildVideoPayload( app, this.allVideoAppsList, this.lists.video ) ) return }