0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-30 22:03:56 -05:00

feat: add db as top-level config value

This commit is contained in:
Nate Moore 2024-01-08 13:12:25 -06:00
parent 565abb4e62
commit f6de8d2b23
2 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1,5 @@
---
"astro": minor
---
Adds a new top-level configuration option to the Astro configuration

View file

@ -1538,6 +1538,15 @@ export interface AstroUserConfig {
/** ⚠️ WARNING: SUBJECT TO CHANGE */
db?: Config.Database;
/**
* @docs
* @kind heading
* @name Database
* @description
* TODO
*/
db?: object;
/**
* @docs
* @kind heading