This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// 数据库配置文件
// MySQL地址留空,由用户配置
const config = {
development: {
host: 'localhost',
port: 3306,
user: 'root',
password: 'ys123456',
database: 'test',
connectionLimit: 10,
waitForConnections: true,
charset: 'utf8mb4'
}
};
module.exports = config;