diff --git a/nuxt.config.js b/nuxt.config.js index 528ea60..85152a4 100644 --- a/nuxt.config.js +++ b/nuxt.config.js @@ -153,10 +153,16 @@ export default { const isVideo = (app.category === undefined) if (isVideo) { - return getVideoEndpoint(app) + return { + route: getVideoEndpoint(app), + payload: { video: app } + } } - return getAppEndpoint(app) + return { + route: getAppEndpoint(app), + payload: { app } + } }) })