Geert Baeke
Results
2
comments of
Geert Baeke
I installed the font used on MacOS with: `brew install --cask homebrew/cask-fonts/font-space-grotesk` This fixed it on my machine.
I used the following in DataSource.ts: ``` appDataSource = new DataSource({ type: 'mysql', host: process.env.SQLHOST, port: parseInt(process.env.SQLPORT || '3306'), username: process.env.SQLUSERNAME, password: process.env.SQLPASSWORD, database: process.env.SQLDATABASE, charset: 'utf8mb4', synchronize: false, entities:...