mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
12 lines
251 B
JavaScript
12 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'],
|
|
},
|
|
};
|
|
};
|