mirror of
https://github.com/knex/knex.git
synced 2025-07-14 12:31:19 +00:00
12 lines
295 B
JavaScript
12 lines
295 B
JavaScript
/** @type {import("../../../").Config} */
|
|
const config = {
|
|
client: 'sqlite3',
|
|
connection: {
|
|
filename: './test.sqlite3',
|
|
},
|
|
useNullAsDefault: true,
|
|
};
|
|
export default config;
|
|
/** Named exports: or knex won't find them */
|
|
export const { client, connection, useNullAsDefault } = config;
|