mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-01-20 22:52:46 -05:00
10 lines
171 B
JavaScript
10 lines
171 B
JavaScript
|
|
import path from 'path';
|
|
import config from './index';
|
|
|
|
module.exports = {
|
|
...config(),
|
|
auth: {
|
|
[`${path.join(__dirname, '../plugin/authenticate')}`]: { }
|
|
}
|
|
};
|