Skip to content

Instantly share code, notes, and snippets.

@B4nan
Created February 6, 2022 02:23
Show Gist options
  • Save B4nan/20f9ea61169d492a1ae95b71e4708a1d to your computer and use it in GitHub Desktop.
Save B4nan/20f9ea61169d492a1ae95b71e4708a1d to your computer and use it in GitHub Desktop.
import { MikroORM, Utils } from '@mikro-orm/core';
await MikroORM.init({
migrations: {
path: 'dist/migrations',
pathTs: 'src/migrations',
},
// or alternatively
// migrations: {
// path: Utils.detectTsNode() ? 'src/migrations' : 'dist/migrations',
// },
// ...
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment