mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
11 lines
251 B
JavaScript
11 lines
251 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = () => {
|
|
return {
|
|
staticPath: path.join(__dirname, 'static'),
|
|
manifest: require('./static/manifest.json'),
|
|
manifestFiles: {
|
|
js: ['runtime.js', 'vendors.js', 'main.js'],
|
|
},
|
|
};
|
|
};
|