diff --git a/build-lists.js b/build-lists.js index ed9a390..32a87a1 100644 --- a/build-lists.js +++ b/build-lists.js @@ -252,12 +252,20 @@ class BuildLists { } } - // Add app or game endpoint - this.endpointSets.nuxt.add({ - route: getAppEndpoint(app), - payload: { app } - }) - // console.log('Added to nuxt endpoints', getAppEndpoint(app)) + // Add standard app endpoint + if ( appType === 'formula' ) { + this.endpointSets.eleventy.add({ + route: getAppEndpoint(app), + payload: { app } + }) + } else { + // Add app or game endpoint + this.endpointSets.nuxt.add({ + route: getAppEndpoint(app), + payload: { app } + }) + // console.log('Added to nuxt endpoints', getAppEndpoint(app)) + } return })