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:
parent
565abb4e62
commit
f6de8d2b23
2 changed files with 14 additions and 0 deletions
5
.changeset/twenty-bears-live.md
Normal file
5
.changeset/twenty-bears-live.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
"astro": minor
|
||||
---
|
||||
|
||||
Adds a new top-level configuration option to the Astro configuration
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue