mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
11 lines
171 B
JavaScript
11 lines
171 B
JavaScript
|
|
import path from 'path';
|
|
import config from './index';
|
|
|
|
module.exports = {
|
|
...config(),
|
|
auth: {
|
|
[`${path.join(__dirname, '../plugin/authenticate')}`]: { }
|
|
}
|
|
};
|