Merge pull request #15853 from smorimoto/fix-syntax-error-config-database-template

Fix a tiny syntax error in `config/database.ts` of the template
This commit is contained in:
Rémi de Juvigny 2023-02-20 11:46:02 +01:00 committed by GitHub
commit fc938c8bd3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,6 @@
import path from 'path';
export default = ({ env }) => {
export default ({ env }) => {
const client = env('DATABASE_CLIENT', 'sqlite');
const connections = {