mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
14 lines
218 B
JavaScript
14 lines
218 B
JavaScript
var config = {
|
|
storage: __dirname + '/test-storage',
|
|
packages: {
|
|
'*': {
|
|
allow_access: '$all',
|
|
},
|
|
},
|
|
logs: [
|
|
{type: 'stdout', format: 'pretty', level: 'fatal'}
|
|
],
|
|
}
|
|
|
|
module.exports = config;
|