From 7fd210c506260ba8d4fe33dc37df94d311e3c1af Mon Sep 17 00:00:00 2001 From: Chris Hunt Date: Fri, 13 Jan 2023 18:21:11 +0000 Subject: [PATCH] Remove schema --- processing/processjson.js | 1 - site/next.config.js | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) 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,