mirror of
https://github.com/withastro/astro.git
synced 2025-01-06 22:10:10 -05:00
fix: incorrect type for experimental option (#10987)
This commit is contained in:
parent
3e168589d6
commit
05db5f7818
2 changed files with 6 additions and 1 deletions
5
.changeset/lemon-otters-rest.md
Normal file
5
.changeset/lemon-otters-rest.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
"astro": patch
|
||||||
|
---
|
||||||
|
|
||||||
|
Fix a regression where the flag `experimental.rewriting` was marked mandatory. Is is now optional.
|
|
@ -2107,7 +2107,7 @@ export interface AstroUserConfig {
|
||||||
*
|
*
|
||||||
* For a complete overview, and to give feedback on this experimental API, see the [Rerouting RFC](https://github.com/withastro/roadmap/blob/feat/reroute/proposals/0047-rerouting.md).
|
* For a complete overview, and to give feedback on this experimental API, see the [Rerouting RFC](https://github.com/withastro/roadmap/blob/feat/reroute/proposals/0047-rerouting.md).
|
||||||
*/
|
*/
|
||||||
rewriting: boolean;
|
rewriting?: boolean;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue