mirror of
https://github.com/withastro/astro.git
synced 2024-12-16 21:46:22 -05:00
fix(config types): routingStrategy is optional (#9034)
This commit is contained in:
parent
4e9f171ef2
commit
bd2d494c04
1 changed files with 1 additions and 1 deletions
|
@ -1525,7 +1525,7 @@ export interface AstroUserConfig {
|
|||
*
|
||||
* Note: Astro requires all content to exist within a `/[lang]/` folder, even for the default language.
|
||||
*/
|
||||
routingStrategy: 'prefix-always' | 'prefix-other-locales';
|
||||
routingStrategy?: 'prefix-always' | 'prefix-other-locales';
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue