8 lines
229 B
Plaintext
8 lines
229 B
Plaintext
const path = require('path')
|
|
|
|
module.exports = {
|
|
'config': path.resolve('server' ,'config.js'),
|
|
'migrations-path': path.resolve('server', 'migrations'),
|
|
'models-path': path.resolve('server', 'api', 'models')
|
|
}
|