mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-01-27 22:59:51 -05:00
13 lines
243 B
JavaScript
13 lines
243 B
JavaScript
|
|
||
|
import path from 'path';
|
||
|
import config from '../../../partials/config';
|
||
|
|
||
|
const authProfileConf = {
|
||
|
...config(),
|
||
|
auth: {
|
||
|
[`${path.join(__dirname, '../../../partials/plugin/authenticate')}`]: { }
|
||
|
}
|
||
|
};
|
||
|
|
||
|
export default authProfileConf;
|