ERROR: getaddrinfo ENOTFOUND root

When I executed the “NODE_ENV=production yarn start” command, an error occurred
1619076642(1)
My “.sequelizerc” file is configured as follows
var path = require(‘path’);

module.exports = {
‘config’: path.resolve(‘config.json’),
‘migrations-path’: path.resolve(‘lib’, ‘migrations’),
‘models-path’: path.resolve(‘lib’, ‘models’),
‘url’:‘mysql://root:QWE!#qwe123@localhost:3306/hedgedoc’
}

my config.json file
1619076871(1)

The password in your databse URL contains a : which is quite unfortunate as it seems to confuse the URL parser, which now tries to reach a host called root instead of localhost.

How should I change it