From 9a5ff96a548ff5de889badf100ef1b1af6062841 Mon Sep 17 00:00:00 2001 From: Tobias Reiss Date: Mon, 22 Jan 2024 18:43:10 +0100 Subject: [PATCH] Add ml declaration --- solutions/sitemap.xml | 1 + tools/sitemap/create.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/solutions/sitemap.xml b/solutions/sitemap.xml index 39a9f2c1b..690296ea0 100644 --- a/solutions/sitemap.xml +++ b/solutions/sitemap.xml @@ -1,3 +1,4 @@ + https://www.bitdefender.com.au/solutions/internet-security diff --git a/tools/sitemap/create.js b/tools/sitemap/create.js index f33a338c8..d0437492b 100644 --- a/tools/sitemap/create.js +++ b/tools/sitemap/create.js @@ -55,7 +55,7 @@ try { }; const options = { compact: true, ignoreComment: true, spaces: 4 }; - const xml = convert.json2xml(output, options); + const xml = `\n${convert.json2xml(output, options)}`; await fs.writeFile(sitemapPath, xml); } catch (error) { // eslint-disable-next-line no-console