diff --git a/processing/processjson.js b/processing/processjson.js index 796446c..82d93e8 100644 --- a/processing/processjson.js +++ b/processing/processjson.js @@ -54,7 +54,6 @@ glob("**/app.json", async function (err, files) { let json = { name: nextConfig.env.name || 'Unknown store', appcount: apptotal, - schema_version: nextConfig.env.schema || '1.0', icon: nextConfig.env.icon || null, description: nextConfig.env.description || null, list_url: nextConfig.env.listUrl || null, diff --git a/site/next.config.js b/site/next.config.js index 27cb96f..a19dd99 100644 --- a/site/next.config.js +++ b/site/next.config.js @@ -5,9 +5,8 @@ const nextConfig = { name: 'Kasm Technologies', description: 'The official store for Kasm supported applications.', icon: '/img/logo.svg', - listUrl: 'https://registry.kasmweb.com/list.json', + listUrl: 'https://registry.kasmweb.com/', contactUrl: 'https://kasmweb.com/support', - schema: '1.0', }, reactStrictMode: true, swcMinify: true,