diff options
| author | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-31 10:28:09 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-31 10:28:09 +0100 |
| commit | 244fda8c63356bfcc19a0ea437edf36458e4bc9b (patch) | |
| tree | a54fe436f4d71cd9d735f34b4f7b8829b1af4456 /astro.config.mjs | |
| parent | 73bbbe8307f9474e751236a44db2dcc6924c5035 (diff) | |
| parent | 5bfb00f6cdbb369d834dbe27d213d80a821f8036 (diff) | |
Merge pull request #4 from Sycamost/dev
Changes site to scotsleidassocie.org
Diffstat (limited to 'astro.config.mjs')
| -rw-r--r-- | astro.config.mjs | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/astro.config.mjs b/astro.config.mjs index 60e7399..b9895ef 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -4,6 +4,11 @@ import sitemap from '@astrojs/sitemap'; // https://astro.build/config export default defineConfig({ - integrations: [mdx(), sitemap()], - site: 'https://www.lallans.co.uk', + integrations: [ + mdx(), + sitemap({ + filter: (page) => !page.includes('payment-success-confirmation'), + }), + ], + site: 'https://scotsleidassocie.org', }); |
