Skip to content
Snippets Groups Projects
.sequelizerc 265 B
Newer Older
Ramiro's avatar
Ramiro committed
const path = require('path');

module.exports = {
  'config': path.resolve('dist', 'config', 'config.js'),
  'models-path': path.resolve('dist', 'models'),
  'seeders-path': path.resolve('dist', 'seeders'),
  'migrations-path': path.resolve('dist', 'migrations')
};