mirror of
https://github.com/strapi/strapi.git
synced 2025-07-22 16:37:13 +00:00
12 lines
264 B
Plaintext
12 lines
264 B
Plaintext
const path = require('path');
|
|
|
|
module.exports = ({ env }) => ({
|
|
connection: {
|
|
client: 'sqlite',
|
|
connection: {
|
|
filename: path.join(__dirname, '..', env('DATABASE_FILENAME', '<%= connection.filename %>')),
|
|
},
|
|
useNullAsDefault: true,
|
|
},
|
|
});
|