mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-01-06 22:40:26 -05:00
12 lines
243 B
JavaScript
12 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;
|