NestJS - Database with TypeORM
You wrote this code but get a runtime error:
What is the most likely cause?
TypeOrmModule.forRoot({
type: 'mysql',
host: 'localhost',
port: 3306,
username: 'root',
password: 'pass',
database: 'test',
entities: [User],
synchronize: true,
})What is the most likely cause?
