mirror of
https://github.com/strapi/strapi.git
synced 2025-07-19 07:02:26 +00:00
13 lines
183 B
JavaScript
13 lines
183 B
JavaScript
![]() |
'use strict';
|
||
|
|
||
|
module.exports = scope => {
|
||
|
|
||
|
// Finally, return the JSON.
|
||
|
return {
|
||
|
defaultConnection: 'default',
|
||
|
connections: {
|
||
|
default: scope.database
|
||
|
}
|
||
|
};
|
||
|
};
|