mirror of
https://github.com/withastro/astro.git
synced 2024-12-23 21:53:55 -05:00
52209ca2ad
* 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
14 lines
317 B
Markdown
14 lines
317 B
Markdown
---
|
|
'astro': major
|
|
'@astrojs/mdx': major
|
|
'@astrojs/markdown-remark': major
|
|
---
|
|
|
|
Baseline the experimental `contentCollections` flag. You're free to remove this from your astro config!
|
|
|
|
```diff
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
export default defineConfig({
|
|
- experimental: { contentCollections: true }
|
|
})
|