diff options
author | 2023-01-11 12:51:31 -0500 | |
---|---|---|
committer | 2023-01-11 12:51:31 -0500 | |
commit | 52209ca2ad72a30854947dcb3a90ab4db0ac0a6f (patch) | |
tree | 707b90eee0464eedfa2dbc10d01500c73d6661c7 /examples/with-content/astro.config.mjs | |
parent | 665a2c2225e42881f5a9550599e8f3fc1deea0b4 (diff) | |
download | astro-52209ca2ad72a30854947dcb3a90ab4db0ac0a6f.tar.gz astro-52209ca2ad72a30854947dcb3a90ab4db0ac0a6f.tar.zst astro-52209ca2ad72a30854947dcb3a90ab4db0ac0a6f.zip |
[Content collections] Remove experimental flag (#5825)
* refactor: remove experimental.cc from core
* chore: remove experimental flag from tests
* fix: mock contentDir in remark tests
* fix: check vfile.path in rel-image-error plugin
* fix: move .astro/ excludes to all test/fixtures
* fix: include test/**/fixtures in ignore
* chore: changeset
Diffstat (limited to 'examples/with-content/astro.config.mjs')
-rw-r--r-- | examples/with-content/astro.config.mjs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/examples/with-content/astro.config.mjs b/examples/with-content/astro.config.mjs index e27ea0285..3b2f75c84 100644 --- a/examples/with-content/astro.config.mjs +++ b/examples/with-content/astro.config.mjs @@ -7,7 +7,4 @@ import sitemap from '@astrojs/sitemap'; export default defineConfig({ site: 'https://example.com', integrations: [mdx(), sitemap()], - experimental: { - contentCollections: true, - }, }); |