0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-04-07 23:41:43 -05:00

fix: make preserveScriptOrder an optional flag (#13413)

This commit is contained in:
Matt Kane 2025-03-13 12:10:14 +00:00 committed by GitHub
parent 42772253fa
commit 65903c9954
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 1 deletions

View file

@ -0,0 +1,5 @@
---
'astro': patch
---
Makes experimental flag optional

View file

@ -2210,7 +2210,7 @@ export interface ViteUserConfig extends OriginalViteUserConfig {
* ```
*
*/
preserveScriptOrder: boolean;
preserveScriptOrder?: boolean;
};
}