diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/fixtures/astro-dynamic/astro.config.mjs | 3 | ||||
-rw-r--r-- | test/fixtures/astro-markdown/astro.config.mjs | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/test/fixtures/astro-dynamic/astro.config.mjs b/test/fixtures/astro-dynamic/astro.config.mjs new file mode 100644 index 000000000..12ec645aa --- /dev/null +++ b/test/fixtures/astro-dynamic/astro.config.mjs @@ -0,0 +1,3 @@ +export default { + sitemap: false, +}; diff --git a/test/fixtures/astro-markdown/astro.config.mjs b/test/fixtures/astro-markdown/astro.config.mjs index f50751cfd..c3bdc353c 100644 --- a/test/fixtures/astro-markdown/astro.config.mjs +++ b/test/fixtures/astro-markdown/astro.config.mjs @@ -2,4 +2,5 @@ export default { extensions: { '.jsx': 'preact', }, + sitemap: false, }; |