From 95b34ab680ef8d8513ec71fbe7db08bcf71113f7 Mon Sep 17 00:00:00 2001 From: Julien Nahum Date: Mon, 15 Jan 2024 13:00:18 +0100 Subject: [PATCH] Fix sitemap source URL --- client/sitemap.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/client/sitemap.js b/client/sitemap.js index 6dc5405..939c9a8 100644 --- a/client/sitemap.js +++ b/client/sitemap.js @@ -1,9 +1,7 @@ -import opnformConfig from "./opnform.config.js"; - export default { exclude: ['/settings/**', '/subscriptions/**', '/templates/my-templates'], sources: [ - opnformConfig.api_url + '/sitemap-urls' + process.env.NUXT_PUBLIC_API_BASE + '/sitemap-urls' ], cacheMaxAgeSeconds: 3600 }