mirror of
https://github.com/laurent22/joplin.git
synced 2025-02-10 19:41:43 +02:00
14 lines
232 B
TypeScript
14 lines
232 B
TypeScript
import { Config } from './utils/types';
|
|
import configBase from './config-base';
|
|
|
|
const config: Config = {
|
|
...configBase,
|
|
database: {
|
|
name: 'DYNAMIC',
|
|
client: 'sqlite3',
|
|
asyncStackTraces: true,
|
|
},
|
|
};
|
|
|
|
export default config;
|